https://github.com/steamerjs/steamer-simple
一个基础而无框架的脚手架
https://github.com/steamerjs/steamer-simple
Last synced: 4 months ago
JSON representation
一个基础而无框架的脚手架
- Host: GitHub
- URL: https://github.com/steamerjs/steamer-simple
- Owner: steamerjs
- License: mit
- Created: 2017-01-25T07:45:09.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-08-26T01:26:10.000Z (almost 8 years ago)
- Last Synced: 2025-09-15T04:46:29.578Z (10 months ago)
- Language: JavaScript
- Size: 818 KB
- Stars: 5
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# steamer-simple
一个基础而无框架的脚手架
[](https://www.npmjs.com/package/steamer-simple)
[](https://david-dm.org/SteamerTeam/steamer-simple)
## 快速启动
* 推荐 >> 使用[steamerjs](https://steamerjs.github.io/docs/projectkits/Bootstrap.html)安装
```javascript
// 安装 steamerjs,已经内置 steamer-plugin-kit
npm i -g steamerjs
// 下载脚手架到全局
steamer kit --add https://github.com/steamerjs/steamer-simple.git
// 基于脚手架初始化项目
steamer kit
```
* 直接从github clone 下来
## 常用命令
```javascript
// 安装依赖
npm i
// 开发
npm start 或 npm run dev
// 打开链接
localhost:9000
// 代码规范安装
npm i -g eslint
npm i -g stylelint
// 代码规范扫描
npm lint
// 生产代码生成
npm run dist 或 npm run pub
```
## 脚手架文档
[参见文档-项目脚手架](https://steamerjs.github.io/docs/projectkits/Starterkit.html)
## 文章参考
* [webpack使用优化(基本篇)](https://github.com/lcxfs1991/blog/issues/2)
* [webpack Performance: The Comprehensive Guide](https://github.com/lcxfs1991/blog/issues/15)