Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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 [-- [...]]
```