NPM Script Generator
Create and manage package.json scripts for common development tasks
start
basic
node index.js
Start the application
test
testing
jest
Run tests
{
"start": "node index.js",
"test": "jest"
}
Copy this JSON into the "scripts" section of your package.json file.