This repo contains example nodes to help you get started building your own custom integrations for n8n. It includes the node linter and other dependencies.
To make your custom node available to the community, you must create it as an npm package, and submit it to the npm registry.
You need the following installed on your development machine:
- git
- Node.js and npm. Minimum version Node 16. You can find instructions on how to install both using nvm (Node Version Manager) for Linux, Mac, and WSL here. For Windows users, refer to Microsoft's guide to Install NodeJS on Windows.
- Install n8n with:
npm install n8n@0.218.0 -g
- Recommended: follow n8n's guide to set up your development environment.
- Run
git clone https://github.com/ScaleMote/flow.git
to clone the repository to your machine. - Run
npm install
to install the project dependencies. - Run
(npm ci) -and (npm build)
to build the project. Note that for Windows users is necessary to delete thenpm run clean
of thebuild
script. - Run
npm link
in the project root. This will link our local project to the global context of NPM. We can check that if we runnpm list -g
we should see our project in the list. - Run
npm list -g
to see where the global dependencies are installed. For most of the cases should be inC:\Users\YOUR_WINDOWS_USER_NAME\AppData\Roaming\npm
, but it may vary in every machine. - Navigate to
GLOBAL_DEPENDENCIES_FOLDER/node_modules/n8n
and runnpm link n8n-nodes-stellar
to link the project. The name passed tonpm link
should be the same as the defined in thename
property of the project'spackage.json
file. - If you want to use
postgres
as your database, create a.env
file in the project root copying to contents of the.env.dist
file.DB_TYPE
must be set topostgresdb
. Then you must rundocker-compose up
to run the Postgres local database. - Run
n8n start
to start the n8n server with the custom nodes.
These are the basic steps for working with the starter. For detailed guidance on creating and publishing nodes, refer to the documentation.
- Generate a new repository from this template repository.
- Clone your new repo:
git clone https://github.com/<your organization>/<your-repo-name>.git
- Run
npm i
to install dependencies. - Open the project in your editor.
- Browse the examples in
/nodes
and/credentials
. Modify the examples, or replace them with your own nodes. - Update the
package.json
to match your details. - Run
npm run lint
to check for errors ornpm run lintfix
to automatically fix errors when possible. - Test your node locally. Refer to Run your node locally for guidance.
- Replace this README with documentation for your node. Use the README_TEMPLATE to get started.
- Update the LICENSE file to use your details.
- Publish your package to npm.
Refer to our documentation on creating nodes for detailed information on building your own nodes.