windows 10 安装node.js
Posted 墨白`Blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows 10 安装node.js相关的知识,希望对你有一定的参考价值。
第一步:下载软件
nodejs的中文官网http://nodejs.cn/download/
选择 windows 系统 msi 安装版本。
下载完成之后,直接打开下一步安装就可以。
安装完成 打开cmd
写个测试程序
hellp.js
var http = require(\'http\'); http.createServer(function(request,response){ response.writeHead(200,{\'Content-type\':\'text/plain\'}) response.end("Hello World\\n"); }).listen(8888); console.log(\'Server running at http://127.0.0.1:8888\');
OK! 安装完成。还是挺简单的。
以上是关于windows 10 安装node.js的主要内容,如果未能解决你的问题,请参考以下文章