Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zollero/front-end-automation-template
Front end template with nodeJS, bower and Grunt.
https://github.com/zollero/front-end-automation-template
Last synced: about 1 month ago
JSON representation
Front end template with nodeJS, bower and Grunt.
- Host: GitHub
- URL: https://github.com/zollero/front-end-automation-template
- Owner: zollero
- Created: 2015-12-09T08:27:12.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-09T14:19:44.000Z (almost 9 years ago)
- Last Synced: 2023-02-27T20:23:23.711Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## front-end-automation-template
前端自动化变成模板#### 介绍
该项目目录模板,是使用nodeJS,bower 和 Grunt 构建的一个前端自动化变成模板。
其中,package.json是nodeJS的配置文件,bower.json和.bowerrc 是bower的配置文件,Gruntfile.js是grunt自动化工具的配置文件。
nodeJS,bower,和grunt的配置可以参考博文:
http://www.cnblogs.com/yexiaochai/p/3603389.html
#### 启动步骤
1. 安装nodeJS,bower2. 安装grunt-cli:
npm install -g grunt-cli
3. 切换到该项目根目录,用命令行(win32)执行:
npm install
4. 用bower下载需要的前端框架文件(win32):
bower install
5. 完成。可以开始编写项目代码了。
6. 可以根据需要修改Gruntfile.js文件,修改grunt配置。