Node.js学习2~在控制台命令行js文件和web服务中分别实现Hello World
Posted 秋9
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js学习2~在控制台命令行js文件和web服务中分别实现Hello World相关的知识,希望对你有一定的参考价值。
目 录
4.nodejs上控制台上输出Hello Word返回undefined,什么原因?
1.控制台中实现helloworld
console.log('Hello World!');
2.js文件中实现helloworld
运行结果:
、
3.web服务中实现helloworld
var http = require('http');
http.createServer(function (request, response)
response.writeHead(200, 'Content-Type': 'text/html; charset=utf-8');
response.write('Hello World');
response.end();
).listen(8080);
console.log('Server running at http://localhost:8080/');
运行结果:
4.nodejs上控制台上输出Hello Word返回undefined,什么原因?
因为返回值是undefined,属于正常情况
以上是关于Node.js学习2~在控制台命令行js文件和web服务中分别实现Hello World的主要内容,如果未能解决你的问题,请参考以下文章