nodejs初步搭建HelloWord

Posted 月疯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs初步搭建HelloWord相关的知识,希望对你有一定的参考价值。

开发环境:下载安装nodejs

win10系统,webstrom开发工具

hello.js

//导入http
var http=require('http');

//创建
http.createServer(function (request,response) {
    response.writeHead(200,{'Content-type':'text/html;charset=utf-8'});
    if(request.url!=='/favicon.ico'){//清除二次访问
        console.log('访问');
        response.write('hello world');
        response.end("世界");//不写会没有协议尾部,但是写了会访问俩次
    }
}).listen(8000);
console.log('Server running at http://127.0.0.11:8000/')

 

 

 

以上是关于nodejs初步搭建HelloWord的主要内容,如果未能解决你的问题,请参考以下文章

opencvJava+eclipse+opencv 环境搭建 helloword入门demo

nodejs常用代码片段

使用 NodeJS 和 JSDOM/jQuery 从代码片段构建 PHP 页面

简单搭建一个helloword程序

hibernate之helloword(环境搭建)

javascript 用于在节点#nodejs #javascript内设置react app的代码片段