Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liximomo/frontend-workflow
multiple page website workflow
https://github.com/liximomo/frontend-workflow
Last synced: about 2 months ago
JSON representation
multiple page website workflow
- Host: GitHub
- URL: https://github.com/liximomo/frontend-workflow
- Owner: liximomo
- Created: 2016-06-24T11:52:01.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-07-20T05:32:09.000Z (over 8 years ago)
- Last Synced: 2024-05-16T01:03:19.564Z (7 months ago)
- Language: JavaScript
- Size: 447 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 基于 webpack 的前端 workflow
## 目录结构
```
.
+-- src // 页面源码
| +-- // 页面
| | +--js
| | +--style
| | +--index.html
| | +--.entry.js // 脚本入口文件
| | +--style.scss // scss 入口文件
| +--
| +--
| +--
+-- server // 本地服务器
+-- config // 项目配置
+-- modules // 私有模块
+-- node_modules // npm 模块
+-- static // 构建输出
```
## 使用```bash
// 开发
npm start [-- [...]]// 构建
npm run build [-- [...]]
```