win7安装node.js

node.js学习之路

首先进入官网下载好win7版本的node.js,然后解压,一步一步点击安装,不需要配置path,它会自动配置好,装在c盘也是行的。安装完后,测试受否安装成功:

打开cmd命令窗口,输入node,回车;

cmd窗口会出现”>”输入".help”,回车;

> .help 
.break  Sometimes you get stuck, this gets you out 
.clear  Break, and also clear the local context 
.exit   Exit the repl 
.help   Show repl options 
.load   Load JS from a file into the REPL session 
.save   Save all evaluated commands in this REPL session to a file

恭喜您基本安装成功!

在D盘建立一个文件夹:Nodejs

在些文件夹下新建一个文本文件,并输入

var http = require('http');

http.createServer(function (request, response) { 
  response.writeHead(200, {'Content-Type': 'text/plain'}); 
  response.end('Hello World\n'); 
}).listen(8124);

console.log('Server running at http://127.0.0.1:8124/');

保存,并重命名文件为"HelloWorld.js”;

然后在cmd下到D盘下的Nodejs文件下输入:node HelloWorld.js


在本地浏览器地址中,输入:http://127.0.0.1:8124/,OK,欢迎进入Node.js世界;

提示:在命令窗口下,按Ctrl+Pause(Break)可结束刚启动HelloWorld--Web服务;






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值