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
- Host: GitHub
- URL: https://github.com/ryanmcdermott/node-boilerplate
- Owner: ryanmcdermott
- License: mit
- Created: 2017-12-28T04:11:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-28T04:19:28.000Z (over 8 years ago)
- Last Synced: 2025-04-22T15:21:28.279Z (about 1 year ago)
- Topics: boilerplate, javascript, node, node-boilerplate
- Language: JavaScript
- Size: 34.2 KB
- Stars: 6
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-boilerplate [](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
```