Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/steamerjs/steamer-vue

alloyteam vue starter kit
https://github.com/steamerjs/steamer-vue

Last synced: about 1 month ago
JSON representation

alloyteam vue starter kit

Awesome Lists containing this project

README

        

# steamer-vue
一个针对vue的脚手架

[![NPM Version](https://img.shields.io/npm/v/steamer-vue.svg?style=flat)](https://www.npmjs.com/package/steamer-vue)
[![Deps](https://david-dm.org/SteamerTeam/steamer-vue.svg)](https://david-dm.org/SteamerTeam/steamer-vue)

## 快速启动

* 推荐 >> 使用[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-vue.git
// 基于脚手架初始化项目
steamer
```

* 直接从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)
* [Vue-TypeScript全面教程](https://juejin.im/post/5a38830351882506a463bbcc)