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

https://github.com/ryanmcdermott/node-boilerplate

A ridiculously simple starting point for a Node app
https://github.com/ryanmcdermott/node-boilerplate

boilerplate javascript node node-boilerplate

Last synced: 12 months ago
JSON representation

A ridiculously simple starting point for a Node app

Awesome Lists containing this project

README

          

# node-boilerplate [![Build Status](https://api.travis-ci.org/ryanmcdermott/node-boilerplate.svg?branch=master)](https://travis-ci.org/ryanmcdermott/node-boilerplate)

A **ridiculously simple** starting point for a modern Node app, that is linted,
formatted, compiled, and tested.

## What does this have?
* Prettier
* ESLint (AirBnB base config)
* Mocha + Chai tests
* Babel transpilation
* Great CI Integration (**all files must be formatted and linted before tests
are run**)

## Installation
```bash
git clone git@github.com:ryanmcdermott/node-boilerplate.git
cd node-boilerplate
npm install
```

## Building example
```bash
npm build
```

## Linting
```bash
npm run lint
```

## Testing
```bash
npm test
```

## Formatting (with Prettier)
```bash
npm run fmt
```

## Running example
```bash
npm start
```