Boiler is a vanilla express setup that's easy to spin up for machine coding rounds in Node.js
- Vanilla express Node.js server
- Added express json body parser
- Cache I/O operations via ioredis
- Database ORM via sequelize
- Testing via jest
- Linting via prettier and eslint
- Nodemon
- Script for seeding database
- Dependencies like Node.js, redis are already installed via homebrew in MacOS.
# Install dependencies
npm install
# Populate the database
npm run seed
# Start server
npm start
# Run tests
npm test