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

nodeJS + grunt +npm 安装

时间:2016-06-29 20:45:50      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

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 安装

标签:

原文地址:http://www.cnblogs.com/hjlblog/p/5628109.html

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