https://github.com/crazychicken/webpack-basic-bundle
This is the basic project bundle demo webpack, You can use input, output many .html, .css, .js
https://github.com/crazychicken/webpack-basic-bundle
javascript loader-plugin webpack webpack2 webpack3
Last synced: 13 days ago
JSON representation
This is the basic project bundle demo webpack, You can use input, output many .html, .css, .js
- Host: GitHub
- URL: https://github.com/crazychicken/webpack-basic-bundle
- Owner: crazychicken
- License: mit
- Created: 2018-04-11T07:28:27.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-13T04:54:12.000Z (almost 8 years ago)
- Last Synced: 2025-06-13T07:04:39.857Z (8 months ago)
- Topics: javascript, loader-plugin, webpack, webpack2, webpack3
- Language: JavaScript
- Homepage:
- Size: 111 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### WEBPACK BASIC BUILD
### Documentation WEB
### The first setup
### USE MAC WITH NODE.JS
## Install NODEJS, NPM for terminal or iterm
nodejs
https://nodejs.org/static/images/logo.svg
https://nodejs.org/en/
$ node --version
v6.11.0
npm
https://www.npmjs.com/
$ npm --version
3.10.10
### Step 2 Global Installation
npm install -g webpack
npm install -g webpack-cli
$ webpack --version
4.4.1
npm install --save-dev webpack
npm install --save-dev webpack@
### Step 3
If you use Sass, you can also install Sass using npm by running
npm install -g sass
http://sass-lang.com/install
sass --version
Sass 3.4.24 (Selective Steve)
### Step 4
git clone git@github.com:crazychicken/webpack-basic-bundle.git
### Step 5
cd path/webpack-basic-bundle
find package.json
npm install
or
npm i
Pedding with coffee ...
### Step 6
run webpack-dev-server
npm start
run build path dist folder
npm run build
### If you want setup your config, You can view more here.
https://webpack.js.org/guides/