博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【8-23】node.js学习笔记
阅读量:5946 次
发布时间:2019-06-19

本文共 725 字,大约阅读时间需要 2 分钟。

//请求(require)Node.js自带的 http 模块,并且把它赋值给 http 变量//变成了一个拥有所有 http 模块所提供的公共方法的对象var http = require("http");//调用http模块提供的函数: createServer //这个函数会返回一个对象,这个对象有一个叫做 listen 的方法//这个方法有一个数值参数,指定这个HTTP服务器监听的端口号http.createServer(function(request, response) {  response.writeHead(200, {"Content-Type": "text/plain"});  response.write("Hello World");  response.end();}).listen(8888);

基于事件驱动的回调


var http = require("http");function onRequest(request, response) {  console.log("Request received.");  response.writeHead(200, {"Content-Type": "text/plain"});  response.write("Hello World");  response.end();}http.createServer(onRequest).listen(8888);console.log("Server has started.");

 模块放在哪里

 

转载于:https://www.cnblogs.com/achievec/p/4753055.html

你可能感兴趣的文章
php正则匹配utf-8编码的中文汉字
查看>>
MemCache在Windows环境下的搭建及启动
查看>>
linux下crontab实现定时服务详解
查看>>
返回顶部JS
查看>>
iOS9 HTTP 不能正常使用的解决办法
查看>>
Numpy中的random模块中的seed方法的作用
查看>>
史上最全的数据库面试题,不看绝对后悔
查看>>
Chrome百度不显示中文字体
查看>>
用java数组模拟登录和注册功能
查看>>
javaScript实现归并排序
查看>>
关于jsb中js与c++的相互调用
查看>>
串结构练习——字符串匹配
查看>>
CF Round #426 (Div. 2) The Useless Toy 思维 水题
查看>>
UVA 122 Trees on the level 二叉树 广搜
查看>>
POJ-2251 Dungeon Master
查看>>
tortoisesvn的安装
查看>>
大S变"汪太"!与汪小菲注册结婚
查看>>
我是怎么使用最短路径算法解决动态联动问题的
查看>>
URAL 1353 Milliard Vasya's Function DP
查看>>
速读《构建之法:现代软件工程》提问
查看>>