@akagi201/lightjs

A light boilerplate for building an npm package using webpack with javascript transpilation through babel

Usage no npm install needed!

<script type="module">
  import akagi201Lightjs from 'https://cdn.skypack.dev/@akagi201/lightjs';
</script>

README

lightjs

Version Build Status Code style: airbnb

A light boilerplate for building a universal (Node, web, UMD) ES6 npm package.

Features

  • Support gulp.
  • Support webpack.
  • Support TypeScript.
  • Support React.
  • Support Angular.

Usage

  1. Clone this repo.
  2. Modify all relevant entries in package.json and README.md.
  3. Run npm install to install dev dependencies.
  4. Write your ES6 code in src folder.
  5. Write your ES6 tests in test folder.
  6. Run npm run build to build for node. This will compile to ES5, minify, and output the result to lib folder.
  7. Run npm run build-web to build and pack the files for the web. This will output the result to dist folder.
  8. Run npm publish to pulish to the world.