parameters npm code example
Example 1: npm script with arguments
"scripts": {
"grunt": "grunt",
"server": "node server.js"
}
...
# here's how to pass the params to those scripts:
npm run grunt -- task:target // invokes `grunt task:target`
npm run server -- --port=1337 // invokes `node server.js --port=1337`
Example 2: npm script with arguments
"start": "node ./script.js server $PORT"
And then from the command-line:
$ PORT=8080 npm start