nflaig
March 7, 2021, 4:12pm
#1
Hi all,
what’s the recommended approach to add a custom node to n8n in a production deployment? I want to create the node as npm module (GitHub - n8n-io/n8n-nodes-starter: Example starter module for custom n8n nodes. ), do I have to rebuild the docker image?
Best regards,
Nico
jan
March 7, 2021, 4:31pm
#2
Welcome to the community @nflaig !
It is probably easiest if you extend the existing image by additionally installing your npm package with the custom nodes.
Here a different discussion that explains how additional npm modules can be added:
Hey guys!
I am getting back to working with n8n and I really have fun doing so. My problem is I have very limited Docker experience. I managed to get my container running and it is proxied with NGINX to serve via HTTPS.
I am getting to more complex use cases. A lot of my use cases involve XML processing. Back in November 2019 I allready opened this topic: https://community.n8n.io/t/xslt-xsd-processor-or-command-line-tool/401
Now I want to dig deeper into this. I would like to have some more c…
Hope that is helpful!
1 Like
nflaig
March 8, 2021, 8:09pm
#3
Thanks @jan , that gives me a good starting point