Starter kit to create npm modules using ES6 and Babel with sensible defaults.
Want to create an npm module with ES6? Don't want to wait for full node support? Don't want to mess around with creating all those directories and setting up babel and npm scripts? Then this is for you.
git clone https://github.com/vinniegarcia/es6-module-starter.git my-module-name
npm i
--experimental
flag is also enabled so you can use ES7 features.These are just defaults. Feel free to swap out eslint for jshint, or tape for mocha, or whatever you use for CI instead of coveralls.
src/
- Your ES6 source code goes here. Files have a .es6
extension for syntax highlighting in Sublime Text with babel-sublimesrc/tests/
- Your ES6 tests go here.src/.eslintrc
- ESLint configurationcoverage/
- Code coverage reports are output here.dist/
- Your generated ES5 source is output here. This directory is under gitignore..gitignore
- a sensible .gitignore file to prevent you from checking in generated source..npmignore
- preconfigured to publish only the generated source code.package.json
- Customize this to publish your own module..travis.yml
- Customize this if you use Travis CI for builds..coveralls.yml
- Customize this if you use coveralls for code coverage.README.md
- Delete all this and write your own.These scripts are the main way to interact with your module as you develop it.
compile
- run babel to compile your ES6 source to ES5. Output goes to the dist/
directory.lint
- run ESLint on your ES6 source and reports any style errors.tape
- test your code.coverage
- run Istanbul on your code to report coverage. Reports output in HTML to the coverage/istanbul
directory.istanbul
- run Istanbul, but output only lcov files for coveralls to read.coveralls
- run coveralls, using Istanbul's lcov report as input.plato
- run plato, a code analysis tool, on your generated source (plato doesn't support ES6 at the moment; as soon as it does I'll swap it to analyze ES6 source).test
- run tape, Istanbul, and coveralls.prepublish
- compiles your ES6 source to prepare for publishing to npm.File an issue and I'll try to answer you.
Version | Tag | Published |
---|---|---|
2.0.0 | latest | 5yrs ago |