Adding a package.json means that running npm install will install all dependencies mentioned in the dependencies and devDependencies field. I added connect as a dev dependency, but the distinction isn't meaningful beyond aesthetic unless you package and publish jot as a npm module.
I updated the README to use a single npm install command, and to remove the extra command before setting up the editor.
Adding a package.json means that running
npm install
will install all dependencies mentioned in thedependencies
anddevDependencies
field. I addedconnect
as a dev dependency, but the distinction isn't meaningful beyond aesthetic unless you package and publishjot
as a npm module.I updated the README to use a single
npm install
command, and to remove the extra command before setting up the editor.