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