Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gauravtiwari/explore-webpack
A series exploration exercises to understand Webpack
https://github.com/gauravtiwari/explore-webpack
Last synced: 18 days ago
JSON representation
A series exploration exercises to understand Webpack
- Host: GitHub
- URL: https://github.com/gauravtiwari/explore-webpack
- Owner: gauravtiwari
- Created: 2016-06-26T04:18:40.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-07-02T16:36:44.000Z (over 8 years ago)
- Last Synced: 2024-11-25T12:42:04.801Z (28 days ago)
- Language: JavaScript
- Homepage:
- Size: 104 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Exploring webpack series
A series of small exercises to understand webpack
### Deps
Install node.js (either brew on mac or install from [https://nodejs.org/en/download/](https://nodejs.org/en/download/))### Running locally
```bash
git clone [email protected]:gauravtiwari/explore-webpack.git
cd 00/ or 01/
npm install
npm run start
npm run build # Build for production
open main.html in your favorite browser
```### Anatomy
All javascripts files/modules are located inside `/javascripts` folder
Webpack entry file is: `main.js`
Webpack config file is: `webpack.js`