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

https://github.com/theolampert/nano

Very small ES2015+ boilerplate.
https://github.com/theolampert/nano

es2015 es2015-modules javascript

Last synced: about 2 months ago
JSON representation

Very small ES2015+ boilerplate.

Awesome Lists containing this project

README

        

[![Build Status](https://travis-ci.org/theolampert/nano.svg?branch=master)](https://travis-ci.org/theolampert/nano)

### ⚡ Nano
#### Very small ES2015+ boilerplate.

A tiny, configuration-free javascript setup that can be used for quick sketches or to build on top of.

Goals:
- Provide a sane, modern javascript development experience.
- No framework or library opinions.

Features:
- Zero runtime dependencies.
- ES2015+ transformations via the Buble compiler.
- ES2015 modules with tree-shaking via Rollup.js.
- Unit tests with Tape.

Commands:

```
# Run unit tests
npm test

# Run unit tests in watch mode
npm run test:watch

# Run rollup
npm run build

# Run rollup in watch mode
npm run watch
```