NodeJS学习笔记-创建Web服务

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NodeJS学习笔记-创建Web服务相关的知识,希望对你有一定的参考价值。

const http = require(‘http‘);

const hostname = ‘127.0.0.11‘;
const port = 7798;

const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader(‘Content-Type‘,‘text/plain‘);
res.end(‘Hello, NodeJS‘);
});
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});

以上是关于NodeJS学习笔记-创建Web服务的主要内容,如果未能解决你的问题,请参考以下文章

Node.js学习笔记

NodeJS学习笔记之MongoDB模块

nodejs入门学习笔记二——解决阻塞问题

NodeJS学习笔记之Node中的数据交互

NodeJS学习笔记——搭建开发框架Express,实现Web网站登录验证

Nodejs学习笔记----- 路由和全局变量