Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeremenichelli/recipe
Boilerplate repository to build ES2015 JavaScript modules
https://github.com/jeremenichelli/recipe
Last synced: 16 days ago
JSON representation
Boilerplate repository to build ES2015 JavaScript modules
- Host: GitHub
- URL: https://github.com/jeremenichelli/recipe
- Owner: jeremenichelli
- License: mit
- Created: 2015-04-26T14:41:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-07T15:32:50.000Z (almost 9 years ago)
- Last Synced: 2024-10-11T13:34:42.217Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# recipe
[![Build Status](https://travis-ci.org/jeremenichelli/recipe.svg)](https://travis-ci.org/jeremenichelli/recipe)
Boilerplate repository to build ES2015 JavaScript modules. Built using Gulp as a task runner, ESLint for lint checking, Babel for transpelling, and Karma for unit tests.
Feel free to dig into it, propose changes or fork and use it. Tovers the most primitive needs for an elemental JavaScript project so there's a chance you might need to add new stuff to adapt it to your needs.
## Use
Fork or download the content of this repository into your project folder.
### Install dependencies
```
npm install
```### Check code styles and possible errors
```
npm run lint
```### Run tests
```
npm run test
```### Build and generate distribution files
```
npm run build
```