2019-10-03 08:53:03 +02:00
|
|
|
# n8n-nodes-starter
|
|
|
|
|
|
2021-12-02 12:23:05 +02:00
|
|
|

|
2019-10-03 08:53:03 +02:00
|
|
|
|
|
|
|
|
Example starter module for custom n8n nodes.
|
|
|
|
|
|
|
|
|
|
|
2021-12-09 16:18:06 +02:00
|
|
|
## Try it out
|
|
|
|
|
|
|
|
|
|
Clone the repo and execute:
|
|
|
|
|
```
|
|
|
|
|
cd n8n-nodes-starter
|
|
|
|
|
npm install
|
|
|
|
|
npm run build
|
|
|
|
|
npm link
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
After that add it to an N8N installation:
|
|
|
|
|
```
|
|
|
|
|
cd ..
|
|
|
|
|
mkdir n8n_install
|
|
|
|
|
cd n8n_install
|
|
|
|
|
npm init
|
|
|
|
|
npm install
|
|
|
|
|
npm install n8n
|
|
|
|
|
npm link n8n-nodes-starter
|
|
|
|
|
npx n8n
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
2019-10-03 08:53:03 +02:00
|
|
|
## License
|
|
|
|
|
|
|
|
|
|
[Apache 2.0 with Commons Clause](https://github.com/n8n-io/n8n/blob/master/packages/nodes-base/LICENSE.md)
|
2021-12-09 16:18:06 +02:00
|
|
|
|
|
|
|
|
|