Node.js Windows系统学习记录 -- 01用法
Posted hros
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js Windows系统学习记录 -- 01用法相关的知识,希望对你有一定的参考价值。
1.安装Node
在我之前的文章Windows系统下安装fis3中提到过怎么安装Node
2.打开cmd输入:
mkdir %USERPROFILE%\\projects
cd %USERPROFILE%\\projects
3.创建一个js脚本 hello-world.js
const http = require(‘http‘);
const hostname = ‘127.0.0.1‘;
const port = 3000;
const server = http.createServer((req, res) =>
res.statusCode = 200;
res.setHeader(‘Content-Type‘, ‘text/plain‘);
res.end(‘Hello World!\\n‘);
);
server.listen(port, hostname, () =>
console.log(`Server running at http://$hostname:$port/`);
);
4.保存返回cmd执行node hello-world.js
5.控制台会输出
Server running at http://127.0.0.1:3000/
6.打开浏览器,在地址栏输入:
http://127.0.0.1:3000
以上是关于Node.js Windows系统学习记录 -- 01用法的主要内容,如果未能解决你的问题,请参考以下文章