node-esm-boilerplate/
├── src/
│ ├── config/
│ │ └── index.js
│ ├── routes/
│ │ └── index.js
│ ├── services/
│ │ └── TestService.js
│ ├── app.js
│ └── server.js
├── .env.dist
├── .gitignore
├── initialize.sh
├── package.json
└── README.md
- Clone the repository
- Run
./initialize.shto install dependencies and create.envfile - start the dev server using
npm run dev - Visit
http://localhost:5000to see the server running