https://github.com/lovefc/webpack
fcup.js如何在node中用webpack打包,和后端处理(webpack练习)
https://github.com/lovefc/webpack
Last synced: 2 months ago
JSON representation
fcup.js如何在node中用webpack打包,和后端处理(webpack练习)
- Host: GitHub
- URL: https://github.com/lovefc/webpack
- Owner: lovefc
- Created: 2021-04-14T05:14:38.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-14T05:16:59.000Z (about 4 years ago)
- Last Synced: 2025-01-09T22:17:52.326Z (4 months ago)
- Language: JavaScript
- Size: 2.19 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 一个小项目
关于fcup.js如何在node中用webpack打包,和后端处理
正好用来学习一下webpack打包
在线演示: http://fcup.lovefc.cn
## 本地使用
```bash
# 克隆本仓库
$ git clone https://gitee.com/lovefc/webpack.git# 安装依赖
$ npm install webpack -g
$ cd webpack
$ npm install# 编译项目
$ npm run watch (webpack --watch)# 启动开发服务器
$ npm run dev```