关于 node,总是断断续续的学一点,也只能在本地自己模拟实战,相信总会有实战的一天~~

  • http 作为服务端,开启服务,处理路由,响应等
  • http 作为客户端,发送请求
  • http、https、http2 开启服务

作为服务端

  1. 开启服务,有两种方式

方式1

const http = require('http')

// 开启服务
var server = http.createServer(function (req, res) {
// 开启服务后具体做什么
res.end('hello world')
}).listen(3000);

方式2

const http = require('http')
const server = new http.Server()
// node 中的服务都是继承 eventemit // 开启服务
server.on('request', function ()
// 开启服务后具体做什么
res.end('hello world')
})
server.listen(3000)
  1. 路由

路由的原理:根据路径去判断

const http = require('http')
const server = new http.Server();
server.on('request', function () {
var path = req.url;
switch (path) {
case '/':
res.end('this is index');
// res.end('<a href="./second">second</a>');
break;
case '/second':
res.end('this is second');
break;
default:
res.end('404');
break;
}
})
server.listen(3000)
  1. 获取请求头信息、设置响应头
const http = require('http')
const server = new http.Server();
server.on('request', function () { // 设置响应头:setHeader() / writeHead()
// setHeader 设置多次,每次一个
res.setHeader('xxx', 'yyy');
res.setHeader('aaa', 'yyy');
res.setHeader('bbb', 'yyy'); // writeHead 只能设置一次,多个,会合并setHeader中的信息,同名优先级高
res.writHead(200, {
'content-type': 'text/html;charset=utf-8', //'text/plain;charset=utf-8'
'ccc': 'yyy',
'aaa': 'aaa'
}) // 需要先设置响应头,再设置res.end,需要先设置setHeader,再设置res.writHead // 请求头信息
console.log(req.httpVersion)
console.log(req.method)
console.log(req.url)
console.log(http.STATUS_CODES) // 比如根据请求头进行:token处理
var token = md5(req.url + req.headers['time'] + 'dsjaongaoeng');
if (req.headers['token'] == token) {
res.end()
} else {
res.end()
} })
server.listen(3000)
  1. 常用监听事件
const http = require('http')
const server = new http.Server();
server.on('request', function () { // 请求监听
// 每次有数据过来
req.on('data', function (chunk) { })
// 整个数据传输完毕
req.on('end', function () { }) // 响应监听
res.on('finish', function () {
console.log('响应已发送')
}) res.on('timeout', function () {
res.end('服务器忙')
})
res.setTimeout(3000) }) // 连接
server.on('connection', function () { }) // 错误处理
server.on('error', function (err) {
console.log(err.code)
}) // 超时 2000 ms
server.setTimeout(2000, function () {
console.log('超时')
}) server.listen(3000)
  1. 接受 get 和 post 请求
const http = require('http')
const url = require('url')
const server = new http.Server();
server.on('request', function () { // get 参数,放在url中,不会触发 data
var params = url.parse(req.url, true).query;
// post 参数,在请求体中,会触发 data
var body = ""
req.on('data', function (thunk) {
body += chunk
})
req.end('end', function () {
console.log(body)
}); }) server.listen(3000)

http 作为客户端

  1. 发送请求:request 发送 post 请求,get 发送 get 请求
const http = require('http')

const option = {
hostname: '127.0.0.1',
port: 3000,
method: 'POST',
path: '/', // 可不写,默认到首页
headers: {
'Content-Type': 'application/json'
}
}
// post
var req = http.request(option, function (res) {
// 接收响应
var body = ''
res.on('data', function (chunk) {
body += chunk
})
res.on('end', function () {
console.log(body)
})
}); var postJson = '{"a": 123, "b": 456}'
req.write(postJson)
req.end(); // 结束请求 // get
http.get('http://localhost:3000/?a=123', function (req) {
// 接收响应
var body = ''
res.on('data', function (chunk) {
body += chunk
})
res.on('end', function () {
console.log(body)
})
});
  1. 设置请求头和响应头
const http = require('http')

const option = {
hostname: '127.0.0.1',
port: 3000,
method: 'POST',
path: '/', // 可不写,默认到首页
headers: { // 可在此设置请求头
'Content-Type': 'application/json'
}
}
// post
var req = http.request(option, function (res) {
// 避免乱码
res.setEncoding('utf-8')
// 获取响应头
console.log(res.headers)
console.log(res.statusCode) // 接收响应
var body = ''
res.on('data', function (chunk) {
body += chunk
})
res.on('end', function () {
console.log(body)
})
}); var postJson = '{"a": 123, "b": 456}'
// 设置请求头
req.setHeader('xx', 'aaa') req.write(postJson)
req.end(); // 结束请求

http、https、http2 开启服务的区别

  1. http
const http = require('http')
const options = {}
// options 可不传
http.createServer(options, (req, res) => {
res.end()
}).listen(3000) http.createServer((req, res) => {
res.end()
}).listen(3000)
  1. https
const https = require('https')
const fs = require('fs') const options = {
key: fs.readFileSync('./privatekey.pem'), // 私钥
cert: fs.readFileSync('./certificate.pem') // 公钥
} https.createServer(options, (req, res) => {
res.end()
}).listen(3000)
  1. http2
const http2 = require('http2')
const fs = require('fs') const options = {
key: fs.readFileSync('./privatekey.pem'), // 私钥
cert: fs.readFileSync('./certificate.pem') // 公钥
} http2.createSecureServer(options, (req, res) => {
res.end()
}).listen(3000)

最后,关于 node 还有很多需要学的,比如 文件(fs)系统,及 node 使用数据库,还有框架(express、koa2,曾经学过,不用忘的好快),服务器部署等,加油!。

node http 模块 常用知识点记录的更多相关文章

  1. atitit 商业项目常用模块技术知识点 v3 qc29

    atitit 商业项目常用模块技术知识点 v3 qc29 条码二维码barcodebarcode 条码二维码qrcodeqrcode 条码二维码dm码生成与识别 条码二维码pdf147码 条码二维码z ...

  2. Node.js process 模块常用属性和方法

    Node.js是常用的Javascript运行环境,本文和大家发分享的主要是Node.js中process 模块的常用属性和方法,希望通过本文的分享,对大家学习Node.js http://www.m ...

  3. BIOS备忘录之EC常用知识点

    BIOS工程师眼中常用的EC知识点汇总: EC的硬件架构 EC硬件结构上主要分为两部分:Host Domain和EC Domain Host Domain就是通过LPC与CPU通信的部分(LPC部分需 ...

  4. Developer - 如何自我保证Node.js模块质量

    组里正在做SaaS产品,其中一些模块(Module)是Node.js实现,这里我们主要使用Node.js实现Web Server来提供服务. 在做SaaS项目之前,组里的开发模式是传统的Deverlo ...

  5. Node.js学习(第二章:node核心模块--fs)

    前言 Node.js中赋予了JavaScript很多在浏览器中没有的能力,譬如:文件读写,创建http服务器等等,今天我们就来看看在node中怎样用JavaScript进行文件的读写操作. 读文件 我 ...

  6. C#知识点记录

    用于记录C#知识要点. 参考:CLR via C#.C#并发编程.MSDN.百度 记录方式:读每本书,先看一遍,然后第二遍的时候,写笔记. CLR:公共语言运行时(Common Language Ru ...

  7. DB2_SQL_常用知识点&实践

    DB2_SQL_常用知识点&实践 一.删除表中的数据(delete或truncate) 1 truncate table T_USER immediate; 说明:Truncate是一个能够快 ...

  8. Oracle EBS BOM模块常用表结构

    表名: bom.bom_bill_of_materials  说明: BOM清单父项目  BILL_SEQUENCE_ID NUMBER 清单序号(关键字)ASSEMBLY_ITEM_ID NUMBE ...

  9. SAP FI CO模块常用事务代码

                                                                                                        ...

随机推荐

  1. Java 判断密码是否是大小写字母、数字、特殊字符中的至少三种

    public class CheckPassword { //数字 public static final String REG_NUMBER = ".*\\d+.*"; //小写 ...

  2. Codeforces Round #591 (Div. 2)

    A. CME 题目链接:https://codeforces.com/contest/1241/problem/A 题意: 你有 N 根火柴 , 多少根火柴就可以组成多大的数(如 三根火柴可以表示 3 ...

  3. 聊一聊 Vue 中 watch 对象中的回调函数为什么不能是箭头函数?

    聊一聊 Vue 中 watch 对象中的回调函数为什么不能是箭头函数 本文重点知识点速览: Vue 中的 watch 对象中的回调函数不能是箭头函数. 箭头函数中的 this 指向的是函数定义时所在的 ...

  4. C#访问SFTP:Renci.SshNet.Async

    SFTP是SSH File Transfer Protocol的缩写,安全文件传送协议.安全文件传送协议.可以为传输文件提供一种安全的网络的加密方法.sftp 与 ftp 有着几乎一样的语法和功能. ...

  5. C语言笔记 08_函数指针&回调函数&字符串&结构体&位域

    函数指针 函数指针是指向函数的指针变量. 通常我们说的指针变量是指向一个整型.字符型或数组等变量,而函数指针是指向函数. 函数指针可以像一般函数一样,用于调用函数.传递参数. 函数指针变量的声明: / ...

  6. 图解leetcode —— 128. 最长连续序列

    前言: 每道题附带动态示意图,提供java.python两种语言答案,力求提供leetcode最优解. 描述: 给定一个未排序的整数数组,找出最长连续序列的长度. 要求算法的时间复杂度为 O(n). ...

  7. Ajax 的基本使用

    Ajax简介 一门异步的加载技术,局部刷新 异步加载,可以在不重载整个网页的前提下,进行局部刷新 分为原生和JQ两种 JSON数据格式 Json对象转字符串: JSON.stringify() 字符串 ...

  8. 《Hands-On System Programming with Go》之读文件

    有点全,但不是很全. 一次读入,分批次读入,缓存读入. 要记得这几种不同读取的应用场景. package main import ( "bufio" "bytes&quo ...

  9. jimdb压测踩坑记

    本文记录在jimdb压测过程中遇到的各种小坑,望能够抛砖引玉. 1.压测流量起来后,过了5分钟左右,发现ops突降,大概降了三分之一,然后稳定了下来 大概原因:此种情况,jimdb极有可能某个分片的连 ...

  10. SpringCloud微服务实现生产者消费者+ribbon负载均衡

    一.生产者springcloud_eureka_provider (1)目录展示 (2)导入依赖 <dependency> <groupId>org.springframewo ...