node-es6-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.sh
to install dependencies and create.env
file - start the dev server using
npm run dev
- Visit
http://localhost:5000
to see the server running