https://github.com/richardhpa/webpack-refresher
https://github.com/richardhpa/webpack-refresher
webpack
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/richardhpa/webpack-refresher
- Owner: RichardHpa
- Created: 2020-01-14T20:04:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-16T18:42:35.000Z (about 5 years ago)
- Last Synced: 2025-10-06T17:47:09.779Z (9 months ago)
- Topics: webpack
- Language: JavaScript
- Size: 2.29 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
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
```