
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
@atom8n/create-node
Advanced tools
A powerful scaffolding tool to quickly create custom n8n community nodes with best practices built-in.
Create a new n8n node in seconds:
npm create @n8n/node@latest # or pnpm/yarn/...
Follow the interactive prompts to configure your node, or specify options directly:
npm create @n8n/node my-awesome-node --template declarative/custom
npm create @n8n/node [NAME] [OPTIONS]
| Flag | Description |
|---|---|
-f, --force | Overwrite destination folder if it already exists |
--skip-install | Skip automatic dependency installation |
--template <template> | Specify which template to use |
declarative/custom - Start with a minimal declarative node structuredeclarative/github-issues - GitHub Issues integration exampleprogrammatic/example - Full programmatic node with advanced featuresThe CLI will guide you through setting up your node:
$ npm create @n8n/node
┌ @n8n/create-node
│
◇ What is your node called?
│ my-awesome-api-node
│
◇ What kind of node are you building?
│ HTTP API
│
◇ What template do you want to use?
│ Start from scratch
│
◇ What's the base URL of the API?
│ https://api.example.com/v1
│
◇ What type of authentication does your API use?
│ API Key
│
◇ Files copied ✓
│
◇ Dependencies installed ✓
│
◇ Next Steps ─────────────────────────────────────────────────────────────────────╮
│ │
│ cd ./my-awesome-api-node && npm run dev │
│ │
│ 📚 Documentation: https://docs.n8n.io/integrations/creating-nodes/ │
│ 💬 Community: https://community.n8n.io │
│ │
├──────────────────────────────────────────────────────────────────────────────────╯
│
└ Created ./my-awesome-api-node ✨
cd ./my-awesome-api-node
npm run dev
This command:
http://localhost:5678~/.n8n-node-cli/.n8n/custom for developmenthttp://localhost:5678Your generated project comes with these convenient npm scripts:
npm run dev
# Runs: n8n-node dev
npm run build
# Runs: n8n-node build
npm run lint
# Runs: n8n-node lint
npm run lint:fix
# Runs: n8n-node lint --fix
npm run release
# Runs: n8n-node release
npm run build
Generates:
npm run lint
Validates:
npx n8n-node cloud-support
Manage n8n Cloud publication eligibility. In strict mode, your node must use the default ESLint config and pass all community node rules to be eligible for n8n Cloud publication.
Fix issues automatically:
npm run lint:fix
npm run release
Runs release-it to handle the complete release process:
Your generated project includes:
my-awesome-api-node/
├── src/
│ ├── nodes/
│ │ └── MyAwesomeApi/
│ │ ├── MyAwesomeApi.node.ts # Main node logic
│ │ └── MyAwesomeApi.node.json # Node metadata
│ └── credentials/
│ └── MyAwesomeApiAuth.credentials.ts
├── package.json
├── tsconfig.json
└── README.md
The CLI expects your project to follow this structure for proper building and development.
The CLI reads configuration from your package.json:
{
"name": "n8n-nodes-my-awesome-node",
"n8n": {
"n8nNodesApiVersion": 1,
"nodes": [
"dist/nodes/MyAwesomeApi/MyAwesomeApi.node.js"
],
"credentials": [
"dist/credentials/MyAwesomeApiAuth.credentials.js"
]
}
}
Choose the right template for your use case:
| Template | Best For | Features |
|---|---|---|
| Declarative | REST APIs, simple integrations | JSON-based configuration, automatic UI generation |
| Programmatic | Complex logic, custom operations | Full TypeScript control, advanced error handling |
Node not appearing in n8n:
# Clear n8n node cli cache and restart
rm -rf ~/.n8n-node-cli/.n8n/custom
npm run dev
TypeScript errors:
# Reinstall dependencies
rm -rf node_modules npm-lock.yaml
npm install
Build failures:
# Check for linting issues first
npm run lint --fix
npm run build
Development server issues:
# Clear cache and restart development server
rm -rf ~/.n8n-node-cli/.n8n/custom
npm run dev
If you prefer to use your own n8n installation:
npm run dev --external-n8n
Specify a custom location for n8n user data:
npm run dev --custom-user-folder /path/to/custom/folder
Found a bug or want to contribute? Check out the n8n repository and join our community!
Happy node building! 🎉
FAQs
Official CLI to create new community nodes for n8n
The npm package @atom8n/create-node receives a total of 24 weekly downloads. As such, @atom8n/create-node popularity was classified as not popular.
We found that @atom8n/create-node demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.