nodeJS + grunt +npm 安装

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 listen 8899 port! 则表示安装成功。

  var http = require("http");

  http.createServer(function(request, response) {

  response.writeHead(200, {"Content-Type": "text/plain"});

  response.write("test nodjs");

  response.end();

  }).listen(8899);

  console.log("nodejs start listen 8899 port!");

5.安装grunt命令行 :npm install -g grunt-cli

 

 

 

 

以上是关于nodeJS + grunt +npm 安装的主要内容,如果未能解决你的问题,请参考以下文章

nodeJS + grunt +npm 安装

安装 grunt 时出现 NodeJS NPM 代理错误

nodejs 怎么全局安装express

前端自动化工具 -- Grunt 使用简介

nodejs npm install全局安装和本地安装的区别

nodejs npm install全局安装和本地安装的区别