Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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