Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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`