Skip to main content

Questions tagged [npm]

npm is the package manager shipped with Node.js. It can be used to install and publish CommonJS and ECMAScript modules, jQuery plugins, reusable JavaScript code (libraries), JavaScript-based CLI programs, and more.

1 vote
0 answers
37 views
+50

next.js n-api module: module parse failed unexpected character

I have created a node module following this recipe: mkdir addon cd addon npm init -y npm install --save-dev node-gyp npm install node-addon-api Create the file addon.cc: #include <napi.h> Napi::...
Mart's user avatar
  • 481
1 vote
0 answers
218 views
+200

How to containerize a single node app from a mono-repo that utilizes npm workspaces

I have a mono-repo with 4 node packages: / └── apps ├── app1 ( "dependencies": { "lib1": "../../libs/lib1" } ) └── app2 ( "dependencies": { "lib2&...
Forivin's user avatar
  • 15.2k