mhulse / node-boilerplate-cli

A simple boilerplate starting point for Node.js command line projects.
Apache License 2.0
18 stars 8 forks source link

package.json fix start script #29

Open mhulse opened 3 years ago

mhulse commented 3 years ago

Start should probably be:

"start": "node ."

And not:

"start": "node src -h"

Then you can test this code using npm start without having to npm link it.