码迷,mamicode.com
首页 > Web开发 > 详细

使用NodeJS、GruntCLI遇到的问题

时间:2015-04-11 17:48:22      阅读:285      评论:0      收藏:0      [点我收藏+]

标签:

运行环境CMD

NODEJS版本v0.8.4  node --version

 

需求:需要用到Grunt的JS编译功能,各位别笑我。

 

使用代理

npm config set proxy http://ip:port

npm config set npaturl http://npat.npmjs.org/

 

安装完grunt-cli报错

> grunt

[plain] view plaincopy技术分享技术分享
 
  1. grunt-cli: The grunt command line interface. (v0.1.13)  
  2.   
  3. Fatal error: Unable to find local grunt.  
  4.   
  5. If you‘re seeing this message, either a Gruntfile wasn‘t found or grunt  
  6. hasn‘t been installed locally to your project. For more information about  
  7. installing and configuring grunt, please see the Getting Started guide:  
  8.   
  9. http://gruntjs.com/getting-started  

 

 

看文件意思是缺少Gruntfile或者项目里没有安装grunt,结果我上网搜不到准确结果。

 

 下载到本地

>npm install grunt

>grunt

 

[plain] view plaincopy技术分享技术分享
 
  1. >> Local Npm module "grunt-contrib-copy" not found. Is it installed?  
  2. >> Local Npm module "grunt-contrib-concat" not found. Is it installed?  
  3. >> Local Npm module "grunt-contrib-uglify" not found. Is it installed?  
  4. >> Local Npm module "grunt-css" not found. Is it installed?  
  5. Warning: Task "concat" not found. Use --force to continue.  
  6.   
  7. Aborted due to warnings.  

 

 

这些是Gruntfile.js中引用的,分别下载。ok

npm install grunt-contrib-copy

npm install grunt-contrib-concat

npm install grunt-contrib-uglify

npm install grunt-css

 

下载过程有版本号问题,需要单独下载  npm install name@version

 

转载 http://blog.csdn.net/phoenix2121/article/details/25910919

使用NodeJS、GruntCLI遇到的问题

标签:

原文地址:http://www.cnblogs.com/sunrise/p/4418021.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!