mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-29 06:22:24 -05:00
No description
| credentials | ||
| nodes/FriendGrid | ||
| .editorconfig | ||
| .gitignore | ||
| .npmrc | ||
| CONTRIBUTOR_LICENSE_AGREEMENT.md | ||
| gulpfile.js | ||
| index.js | ||
| LICENSE.md | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
| tslint.json | ||
n8n-nodes-starter
Example starter module for custom n8n nodes.
Try it out
N8N documentation on custom nodes
Clone the n8n-nodes-starter repository and execute:
# Install dependencies
npm install
# Build the code
npm run build
# "Publish" the package locally
npm link
Create an N8N installation and add the n8n-nodes-starter to it:
# Create an N8N installation
cd ..
mkdir n8n_install
cd n8n_install
npm init
npm install
npm install n8n
# "Install" the locally published module
npm link n8n-nodes-starter
# Start n8n
npx n8n
