Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paradocx96/webpack-getstarted
Sample project for Webpack bundle process
https://github.com/paradocx96/webpack-getstarted
Last synced: 29 days ago
JSON representation
Sample project for Webpack bundle process
- Host: GitHub
- URL: https://github.com/paradocx96/webpack-getstarted
- Owner: paradocx96
- Created: 2023-06-12T17:41:10.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-12T17:42:46.000Z (over 1 year ago)
- Last Synced: 2024-10-10T10:22:04.106Z (2 months ago)
- Language: JavaScript
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
# Webpack Getting Started
## 1. Install Webpack
```bash
npm install webpack webpack-cli --save-dev
```
```bash
yard add webpack webpack-cli --dev
```## 2. Create a project structure
```
dist/
index.html
src/
index.js
webpack.config.js
```## 3. Create a bundle
```bash
npm install lodash --save
```
```bash
yard add lodash
```
```bash
npx webpack
```