Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 493 Bytes

README.md

File metadata and controls

37 lines (23 loc) · 493 Bytes

npm for Scripting

Not just for dependency management.

Using

Development Mode

This will start up the Redis server and Nodemon for development.

npm run dev

"Production" Mode

This will start up the Redis server and start the app in a single process like it would run in production.

npm start

Running Tests

This will lint first and run tests if the linter passes.

npm test

Running Linter Only

To run the linter only.

npm run lint