Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steamerjs/steamer-simple
一个基础而无框架的脚手架
https://github.com/steamerjs/steamer-simple
Last synced: about 1 month ago
JSON representation
一个基础而无框架的脚手架
- Host: GitHub
- URL: https://github.com/steamerjs/steamer-simple
- Owner: steamerjs
- License: mit
- Created: 2017-01-25T07:45:09.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-26T01:26:10.000Z (over 6 years ago)
- Last Synced: 2024-11-10T18:50:11.101Z (about 2 months ago)
- Language: JavaScript
- Size: 818 KB
- Stars: 5
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# steamer-simple
一个基础而无框架的脚手架[![NPM Version](https://img.shields.io/npm/v/steamer-simple.svg?style=flat)](https://www.npmjs.com/package/steamer-simple)
[![Deps](https://david-dm.org/SteamerTeam/steamer-simple.svg)](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)