nassosyian / boilerplate-babel-webpack

:fork_and_knife: Starter with Babel.js and Webpack

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

boilerplate-babel-webpack

npm version downloads count dependencies

🍴 Starter with Babel.js and Webpack

Features

  • βœ… Webpack v4.29.6
  • βœ… Babel v7.3.4
  • βœ… Support syntax ES2015 & ES2016 & ES2017 & ES2018
  • βœ… Static directory: public/
  • βœ… Source Map of bundle file.
  • βœ… Analysis of bundle file weight.

Getting started

You can start in two ways:

Use Git

mkdir PROJECT_NAME
cd $_     # Note: "$_" is last argument of previous command
git init  # Note: branch "master" is created
git remote add boilerplate git@github.com:piecioshka/boilerplate-babel-webpack.git
git pull boilerplate master
git remote remove boilerplate

or ...

Use Zip

  1. Download package file:
    https://github.com/piecioshka/boilerplate-babel-webpack/archive/master.zip
  2. Extract it to your project directory.

How to build the application?

npm install
npm run build
# Open public/ directory in browser

Your source will be minified.

How to develop the application?

npm install
npm run watch
# Open public/ directory in browser

Remove generated directory

If you would like to remove public/dist directory (created by Webpack):

npm run clear

If you would like to remove node_modules/ and remove public/dist/

npm run clear:all

Count LOC (Lines of Code)

If you would like to know how many lines of code you write:

npm run count

Analysis of bundle file weight

If you would like to check how much a bundle file weight:

npm run audit

License

The MIT License @ 2017

About

:fork_and_knife: Starter with Babel.js and Webpack


Languages

Language:JavaScript 93.9%Language:HTML 6.1%