Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oieduardorabelo/express-es6
Setup for Express using ES6+ features!
https://github.com/oieduardorabelo/express-es6
Last synced: 10 days ago
JSON representation
Setup for Express using ES6+ features!
- Host: GitHub
- URL: https://github.com/oieduardorabelo/express-es6
- Owner: oieduardorabelo
- Created: 2015-04-09T02:39:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-19T11:10:04.000Z (about 8 years ago)
- Last Synced: 2024-04-14T19:10:11.268Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 13.7 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Express and ES6+ (with Babel)
Setup for [Express](http://expressjs.com/) using ES6+ features!
This project uses:
- [Webpack](http://webpack.github.io/) - As a package and loader
- [Babel](https://babeljs.io/) - As a transpiler
- [source-map-support](https://github.com/evanw/node-source-map-support) - For debugging after transpiler the code## How to use
### Dependencies
After cloning the repository to your local machine, you need to install all dependencies
```
# Cloning the repository
git clone https://github.com/oieduardorabelo/express-es6.git# Navigate inside the project folder
cd express-es6# Installing all dependencies
npm install
```### Development
After install the dependencies, you can run:
```
npm start
```The previous command will run the **webpack** watcher with **nodemon** on your `_dist/` folder
### Lint your code
To run the [Eslint](http://eslint.org/) in your code, you can run:
```
npm test
```## License
MIT: [http://eduardorabelo.mit-license.org/](http://eduardorabelo.mit-license.org/)