This template provides:
- A basic Express app in
index.js dotenv, a sample env file (.env.sample) and aconfig.jsfile to export config variables- ESLint with Airbnb rules
- Prettier
- Automatic linting on commit: you can't commit if you have ESLint errors
- Install dependencies:
npm install(alternatively, you can use Yarn or PNPM) - Copy
.env.sampleas.envand adjust it to your needs - Start the app on your local machine:
npm run start:dev