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.
- Host: GitHub
- URL: https://github.com/theolampert/nano
- Owner: theolampert
- Created: 2017-02-18T14:40:49.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-12T09:54:42.000Z (about 8 years ago)
- Last Synced: 2025-01-28T01:36:26.084Z (4 months ago)
- Topics: es2015, es2015-modules, javascript
- Language: JavaScript
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
[](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
```