mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-29 22:32:25 -05:00
62 lines
1.7 KiB
Markdown
62 lines
1.7 KiB
Markdown
# n8n-nodes-starter
|
|
|
|

|
|
|
|
Example starter module for custom n8n nodes. The FriendGrid API code snippets from the n8n documentation are used for this purpose. This is a TEST node used as a template for node creation.
|
|
|
|
## Try it out
|
|
|
|
[N8N documentation on custom nodes](https://docs.n8n.io/nodes/creating-nodes/create-n8n-nodes-module.html)
|
|
|
|
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 @digital-boss/n8n-nodes-starter
|
|
|
|
# Start n8n
|
|
npx n8n
|
|
```
|
|
[comment]: <> (# Latest functionality)
|
|
|
|
# Contribution
|
|
|
|
To make this node even better, please let us know, [how you use it](mailto:info@digital-north-consulting.com). Commits are always welcome.
|
|
|
|
# Issues
|
|
|
|
If you have any issues, please [let us know on GitHub](https://github.com/digital-boss/n8n-nodes-starter/issues).
|
|
|
|
# About
|
|
|
|
Special thanks to [N8n nodemation](https://n8n.io) workflow automation by Jan Oberhauser.
|
|
|
|
Nodes by [digital-north-consulting.com](https://digital-north-consulting.com). For productive use and consulting on this, [contact us please](mailto:info@digital-north-consulting.com).
|
|
|
|
This node was updated with ❤️ by Valentina Lilova [valentina98](https://github.com/valentina98)
|
|
|
|
## License
|
|
|
|
[Apache 2.0 with Commons Clause](https://github.com/n8n-io/n8n/blob/master/packages/nodes-base/LICENSE.md)
|
|
|
|
|
|
|