2.6毕设
Posted maxin123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2.6毕设相关的知识,希望对你有一定的参考价值。
例子,一个使用 Node.js 编写的 web服务器,响应返回 ‘Hello World‘
:
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
‘);
});
server.listen(port, hostname, () => {
console.log(`服务器运行在 http://${hostname}:${port}/`);
});
要运行这个服务器,需将代码保存到一个名为 example.js
的文件,并使用 Node.js 执行:
$ node example.js
服务器运行在 http://127.0.0.1:3000/
以上是关于2.6毕设的主要内容,如果未能解决你的问题,请参考以下文章
HTML5期末大作业:餐饮美食网站设计——咖啡(10页) HTML+CSS+JavaScript 学生DW网页设计作业成品 web课程设计网页规划与设计 咖啡网页设计 美食餐饮网页设计...(代码片段