A Node.js boilerplate with ES6, ESLint, and Prettier
I created this boilerplate because I have several coding interviews that needs to be done using JavaScript.
# Run the project without nodemon
npm run start
# Build the project
npm run build
# Clean build
npm run clean
# Check the lint errors
npm run lint
# Fix the lint errors
npm run lint:fix
# Run prettier
npm run format
# Check prettier errors
npm run format:check
- Clone the repository and init new git project
$ git clone [email protected]:vferdiansyah/nodejs-es6-boilerplate.git ./your/project/folder
$ cd ./your/project/folder
$ rm -rf .git
$ git init
- Change project specific information in the following places
- Install dependencies
$ npm i
- Start coding
Copyright (c) 2020 Veri Ferdiansyah
Licensed under the MIT license.