Description
n8n-nodes-tagone
Este repositório contém nós N8N para integração com o sistema ERP TagOne.
Prerequisites
You need the following installed on your development machine:
- git
- Node.js and pnpm. Minimum version Node 18. 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:
pnpm install n8n -g
Using this starter
These are the basic steps for working with the starter. For detailed guidance on creating and publishing nodes, refer to the documentation.
1. Generate a new repository from this template repository.
2. Clone your new repo:
git clone https://github.com//.git
3. Run pnpm i to install dependencies.
4. Open the project in your editor.
5. Browse the examples in /nodes and /credentials. Modify the examples, or replace them with your own nodes.
6. Update the package.json to match your details.
7. Run pnpm lint to check for errors or pnpm lintfix to automatically fix errors when possible.
8. Test your node locally. Refer to Run your node locally for guidance.
9. Replace this README with documentation for your node. Use the Publish your package to npm.