Express 简单实现

今天咱们利用 node 中的 http 模块实现一个 express 框架。关于 http 模块的使用你们可自行查阅相关文档javascript

1、实现 express 启动服务

原生 express 启动服务html

let express = require('express')
let app = express()
let server = app.listen(3000, 'localhost', function () {
	console.log(`app is listening at http://${server.address().address}:${server.address().port}`)
})
复制代码

若实现如上功能,首先咱们肯定的是 express 是一个函数,执行后返回一个 app 函数,且有 listen 方法,咱们不如称这个 app 函数为监听函数。实现代码以下:java

let http = require('http')
function createApplication () {
  // app是一个监听函数
  let app = function (req, res) {
    res.end('hello world')
  }
  app.listen = function () {
    let server = http.createServer(app)
    // arguments就是参数(3000, 'localhost', function () {})
    server.listen(...arguments)
    return server
  }
  return app
}
module.exports = createApplication
复制代码

2、实现 express 路由

原生 express 使用路由node

let express = require('express')
let app = express()
app.get('/name', function (req, res) {
  res.end('get name')
})
app.listen(3000, 'localhost', function () {
  console.log('app is listening')
})
复制代码

若实现如上功能,咱们的 app 监听函数须要实现一个 get 方法,该方法能够把本次调用存储在 app 的路由数组中,当服务启动成功后,监听到匹配的路由时便可调用对应的回调。实现代码以下:git

let http = require('http')
function createApplication () {
  // app是一个监听函数
  let app = function (req, res) {
    // 当前请求方法
    let m = req.method.toLocaleLowerCase()
    // 当前请求路径
    let { pathname } = url.parse(req.url, true)
    for (let i = 0; i < app.routes.length; i++) {
      let { path, method, handler } = app.routes[i]
      // 若是该路由项匹配到当前请求,则执行回调
      if (path === pathname && method === m) {
        handler(req, res)
      }
    }
  }
  // 存储全部的请求,以便监听函数调用
  app.routes = []
  app.get = function (path, handler) {
    let layer = {
      path,
      method: 'get',
      handler
    }
    app.routes.push(layer)
  }
  // app.listen = function () {}
  return app
}
module.exports = createApplication
复制代码

其余 RESTFUL 方法同理。实现代码以下:github

let http = require('http')
function createApplication () {
  // app是一个监听函数
  let app = function (req, res) {
    // 当前请求方法
    let m = req.method.toLocaleLowerCase()
    // 当前请求路径
    let { pathname } = url.parse(req.url, true)
    for (let i = 0; i < app.routes.length; i++) {
      let { path, method, handler } = app.routes[i]
      // 若是该路由项匹配到当前请求,则执行回调
      if ((path === pathname || path === '*') && (method === m || method === 'all')) {
        handler(req, res)
      }
    }
  }
  // 存储全部的请求,以便监听函数调用
  app.routes = []
  // http.METHODS 获取RESTFUL全部方法
  http.METHODS.forEach(method => {
    method = method.toLocaleLowerCase()
    app[method] = function (path, handler) {
      let layer = {
        method,
        path,
        handler
      }
      app.routes.push(layer)
    }
  })
  // 若是没有匹配成功,最终执行all函数所存储的回调
  app.all = function (path, handler) {
    let layer = {
      method: 'all', // 表示所有匹配
      path,
      handler
    }
    app.routes.push(layer)
  }
  // app.listen = function () {}
  return app
}
module.exports = createApplication
复制代码

3、实现 express 中间件

原生 express 使用中间件express

let express = require('express')
let app = express()
app.use(function (req, res, next) {
  res.setHeader('Content-Type', 'text/html; charset=utf-8')
  next()
})
app.use('/name', function (req, res, next) {
  next()
})
app.get('/name', function (req, res) {
  res.end('获取姓名')
})
app.listen(3000, 'localhost', function () {
  console.log('app is listening')
})
复制代码

因而可知,use 方法和 method 方法大同小异,重点是实现 next 方法。 next 函数的做用便是在请求到达前更改一些上下文环境,好比修改返回字符集编码等,且按顺序执行,固可用迭代的方式实现。实现代码以下:api

let http = require('http')
let url = require('url')
function createApplication () {
  // app是一个监听函数
  let app = function (req, res) {
    // 当前请求方法
    let m = req.method.toLocaleLowerCase()
    // 当前请求路径
    let { pathname } = url.parse(req.url, true)
    // 迭代次数索引
    let index = 0
    // 用next代替for循环
    function next () {
      // 若是所有路由数组都不知足,则返回找不到
      if (index === app.routes.length) {
        return res.end(`can not ${m} ${pathname}`)
      }
      // 处理中间件
      let { method, path, handler } = app.routes[index++]
      if (method === 'middle') {
        // 若是该中间件path是/,匹配所有请求,执行回调;若是相等,执行回调;若是该中间件path被包含在当前请求url中,也执行回调
        if (path === '/' || path === pathname || pathname.startsWith(path + '/')) {
          handler(req, res, next)
        } else {
          next()
        }
      } else {
        if ((path === pathname || path === '*') && (method === m || method === 'all')) {
          handler(req, res, next)
        } else {
          next()
        }
      }
    }
    // 直接调用next函数,根据路径匹配查找对应回调并执行
    next()
  }
  // app.routes = []
  // http.METHODS.forEach(() => {}
  // app.all = function (path, handler) {}
  // 中间件:参数能够传path,也能够不传,默认'/'
  app.use = function (path, handler) {
    if (typeof handler !== 'function') {
      handler = path
      path = '/'
    }
    let layer = {
      method: 'middle',
      path,
      handler
    }
    app.routes.push(layer)
  }
  // app.listen = function () {}
  return app
}
module.exports = createApplication
复制代码

此时,express 的主要功能已经实现,下面来看下若是执行错误经过 next 函数参数进行返回的状况。 若是 next 函数有参数,会跳过接下来的全部中间件和路由,直接返回错误参数消息,因此在处理中间件以前要先判断错误状况,而且将错误继续向下传递,只有匹配到有四个参数的回调时才执行。实现代码以下:数组

let http = require('http')
function createApplication () {
  // app是一个监听函数
  let app = function (req, res) {
    // 此处省略...
    function next (err) {
      // 此处省略...
      if (err) {
        res.end(err)
        if (handler.length === 4) {
          handler(err, req, res, next)
        } else {
          next(err)
        }
      } else {
        // 处理中间件,此处省略...
      }
    }
    next()
  }
  // app.routes = []
  // http.METHODS.forEach(() => {}
  // app.all = function (path, handler) {}
  // app.use = function (path, handler) {}
  // app.listen = function () {}
  return app
}
module.exports = createApplication
复制代码

源码app

好了,到这里所有代码已经给出,就到此为止吧~ 😋😋😋

相关文章
相关标签/搜索