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用法的主要内容,如果未能解决你的问题,请参考以下文章

学习node js 之微信公众帐号接口开发 准备工作

小白学习node.js的记录

Nodejs学习记录--安装设置篇

node js学习记录

Node.js安装记录

Node.js安装详细步骤教程(Windows版)