Search code examples
javascriptnode.jsnode-gyp

Custom NodeJS build including javascript modules


is it somehow possible to build NodeJS together with some selected JavaScript modules? I believe that for native modules, I should be able to achieve this with node-gyp, but I have no idea how to do this for JavaScript modules. The main idea is to be able to use custom application without npm install.

I know that I can use any of the bundlers like pkg or nexe, but this has some drawbacks with respect to the development...

Thanks!


Solution

  • You can include JS files as described in here.

    Just add a link-module parameter.

    > .\vcbuild link-module './myCustomModule.js'