Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 707 Bytes

readme.md

File metadata and controls

33 lines (23 loc) · 707 Bytes

Build Status

⚡ 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