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

https://github.com/richardhpa/webpack-refresher


https://github.com/richardhpa/webpack-refresher

webpack

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# Refreshing Webpack

A small recap project on Webpack.
## Installation
```bash
# Clone the repo
git clone https://github.com/RichardHpa/webpack-refresher
cd webpack-refresher

# Install the dependancies
npm install
```

## Scripts
This project currently only has two scripts available.
```bash
# Build the application
npm run build

# Build using watch
npm run watch

# Run a Development Server on port 9000
npm run start:dev
# You can change the port by editing the webpack.config.js file
```