使用NodeJS、GruntCLI遇到的问题

运行环境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. Fatal error: Unable to find local grunt.
  3. If you‘re seeing this message, either a Gruntfile wasn‘t found or grunt
  4. hasn‘t been installed locally to your project. For more information about
  5. installing and configuring grunt, please see the Getting Started guide:
  6. 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. 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 [email protected]

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

时间: 2024-10-28 20:24:05

使用NodeJS、GruntCLI遇到的问题的相关文章

nodeJS npm grunt grunt-cli

1.安装好nodeJS后 ,一般都会把npm也安装好的,nodeJs集成npm的,可通过在cmd 分别执行 node -v和 npm -v来查看他们的版本号,如果显示可说明可继续下面的操作 2.想安装grunt一般可以直接在cmd里面执行   npm install grunt grunt-cli    ,这个意思是通过npm来安装[install 全局[-g]的grunt 以及grunt的客户端[cli] 3.查看是否安装好了grunt,可通过cmd执行  grunt -version来查看g

nodeJS + grunt +npm 安装

1. 在nodeJS官网下载本地电脑对应的nodeJs版本   官网网址是:https://nodejs.org/en/ 2.双击下载的ims文件,一直点击下一步,直到结束. 3.ctrl+R 跳出系统命令窗口:node -v 查看node安装版本:npm -v 查看npm安装版本.//可以使用npm update -g npm 更新npm包管理器. 4.用test.js文件测试nodeJS是否安装成功:在命令窗口 输入 node D:\test.js  如果最终输出 nodejs start

ubuntu14.04下nodejs + npm + bower的安装、调试和部署

  1. 简介 本文介绍ubuntu14.04下nodejs+npm+bower的安装.调试和部署 参考文档 https://docs.npmjs.com/getting-started https://github.com/npm/npm/issues/ 另外: Windows nodejs版本https://nodejs.org/download/release/latest/node-v5.5.0-x64.msi Windows下ide可选用WebStorm-10.0.2.exe 2.  

AngularJS项目NodeJS环境配置

需要安装的软件: node-v0.12.7-x64.msi python-2.7.10.amd64.msi Git-2.5.1-64-bit.exe (注意:Git安装时,需要选择的步骤)  安装位置: 配置环境变量: path路径下添加:(有些安装软件的时候自动生成) D:\Program Files\Git\cmd;D:\Program Files\Git\bin;D:\Program Files\nodejs\;D:\Program Files\python-2.7.10; cmd确认是否

Nodejs + Jshint自动化静态代码检查

1.   目的 提交代码前能够自动化静态代码检查,提高代码质量 2.   准备 1.    Nodejs安装: 官方地址:http://nodejs.org/ 安装说明:根据电脑配置下载对应的版本进行安装 检查安装是否成功: 2.    安装Grunt: GruntJs官方网址:http://www.gruntjs.org/ 安装说明: 1.进入命令行,安装grunt库 2.安装grunt-cli(安装后可以在命令行直接运行grunt命令) 3.检查是否安装成功: 3.    安装jshint

nodejs、mongodb、Subversion环境搭建

nodejs环境 1.安装nodejs到C:\nodejs https://nodejs.org/dist/v4.4.5/node-v4.4.5-x64.msi 2.安装nodejs的插件.命令行 D:\oldproject\web\mean-npbao>npm D:\oldproject\web\mean-npbao>npm  install grunt-cli 3.启动nodejs应用 D:\oldproject\web\mean-npbao>grunt mongodb环境及配置 1

快速搭建NODEJS + Requirejs

1. 系统:CentOS 64位(查看系统位数请执行命令:getconf LONG_BIT) 2. Down 文件 https://nodejs.org/download/ wget https://nodejs.org/dist/v0.12.5/node-v0.12.5.tar.gz 3. 编译NODEJS tar -xvf node-* cd node* yum install gcc-c++ yum install python ./configure make installwherei

简述nodejs、npm及其模块在windows下的安装与配置

nodejs的安装 登陆官网http://nodejs.org/,自行安装,不需配置环境变量,安装中自动配置了. 检测是否安装成功,使用cmd输入 node -v 即可查看. npm的安装 如果是最新版nodejs其实不用装npm,它集成了npm,验证是否安装输入 npm -v 即可查看. 如果不是最新版本,请参照这个http://www.cnblogs.com/seanlv/archive/2011/11/22/2258716.html. npm安装好之后,需要配置环境变量,新建变量名NODE

nodejs直接调用grunt(非调用批处理)

在windows下,我们做js构建工作,都习惯安装grunt-cli,只需要命令行grunt...一切构建工作都自动完成了.这已经是很完美的情况了,不过最近要做一个服务器版的自动化构建系统,在nodejs中调用批处理执行grunt就显得很矬,而且各种问题.是否有更好,更漂亮的方式呢? grunt本来就是nodejs程序,安装后表现为一个node_module,那么cli是什么呢?这只是一个nodejs写的命令行界面.所以,nodejs肯定可以直接在js层面调用grunt. 我们需要做的,只需要揭