Sending command line arguments to npm script

1 replies
The scripts portion of my package.json currently looks like this:

Code:
"scripts": {
    "start": "node ./script.js server"
}
which means I can run npm start to start the server. So far so good.

However, I would like to be able to run something like npm start 8080 and have the argument(s) passed to script.js (e.g. npm start 8080 => nodes ./script.js server 8080). Is this conceivable?
#arguments #command #line #npm #script #sending
  • Profile picture of the author valina g
    The 'vumper' package takes in a command line argument (such as 'dv'). What I would like to be able to do is have a command that runs both of these in succession.
    {{ DiscussionBoard.errors[11724004].message }}

Trending Topics