An open API service indexing awesome lists of open source software.

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

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
```