https://github.com/balasasidhar/nodejs-boilerplate
NodeJS application with ExpressJS, Babel 7, ESLint configuration
https://github.com/balasasidhar/nodejs-boilerplate
babel7 es6 es6-javascript eslint express express-js expressjs node node-js nodejs
Last synced: 3 months ago
JSON representation
NodeJS application with ExpressJS, Babel 7, ESLint configuration
- Host: GitHub
- URL: https://github.com/balasasidhar/nodejs-boilerplate
- Owner: balasasidhar
- License: mit
- Created: 2019-11-25T10:40:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-09T08:21:26.000Z (over 5 years ago)
- Last Synced: 2025-01-25T21:27:44.598Z (5 months ago)
- Topics: babel7, es6, es6-javascript, eslint, express, express-js, expressjs, node, node-js, nodejs
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NodeJS Boilerplate with ExpressJS and Babel 7
### Development
1. Clone the repo
```
git clone https://github.com/balasasidhar/nodejs-express-babel-boilerplate.git
```2. Install dependencies
```
npm installl
```3. Create `.env` file in the root directory (used to secure credentials, for more details refer [dotenv docs](https://www.npmjs.com/package/dotenv))
```
touch .env
```4. Start development server
```
npm start
```### Production
1. Build
```
npm run build
```