n8n-impl-custom-nodes
Installation
SKILL.md
n8n Custom Node Development
Build, test, and publish custom n8n community nodes using TypeScript.
Quick Reference
| Task | Command / Action |
|---|---|
| Scaffold project | Clone n8n-io/n8n-nodes-starter from GitHub |
| Install dependencies | npm install |
| Development mode | npm run dev (hot-reload at http://localhost:5678) |
| Build | npm run build (compiles to dist/) |
| Lint | npm run lint |
| Publish | npm publish (package name MUST start with n8n-nodes-) |
Decision Tree: Programmatic vs Declarative
Need a custom node?
Related skills