node.js 核心

2022-09-13  本文已影响0人  A_走在冷风中

1.简述 node.js 的特点以及使用的场景

node.js 的特点:
node.js 使用场景:

2.简述 Buffer 的使用,包括多种创建方式,实例方法,静态方法

Buffer 特点:
创建 Buffer 实例:
Buffer 实例方法
Buffer 静态方法

3.写出 5 个以上文件操作的 API, 并且用文字说明其功能

4.简述使用流操作的优势,以及 node 中的流分类

流处理数据的优势
node.js 中的流分类

5.在数据封装与解封的过程中,针对应用层、传输层、网络层、数据链路层、物理层 5 层分别做了什么事情?

代码题

1.统计指定目录中文件总大小。要考虑目录中还有子目录的情况。可以同步编码,异步更好。

// 异步计算文件大小
const fs = require('fs')
const path = require('path')

const { promisify } = require('util')
const stat = promisify(fs.stat)
const readdir = promisify(fs.readdir)

async function calcFileSizeAsync(dirPath, cb) {
  let fileSize = 0

  async function getFileSize(dirPath) {
    const statObj = await stat(dirPath)
    if (statObj.isDirectory()) {
      const files = await readdir(dirPath)
      const dirs = files.map((item) => path.join(dirPath, item))
      for (let i = 0; i < dirs.length; i++) {
        await getFileSize(dirs[i])
      }
    } else {
      fileSize += statObj.size
    }
  }
  await getFileSize(dirPath)
  cb && cb(fileSize)
}

calcFileSizeAsync('test', (size) => {
  console.log('异步计算文件大小:' + size)
})

2.编写单向链表类并且实现队列的入列出列操作。

/**
 * 单向链表
 * 01 node + head + null
 * 02 head --> null
 * 03 size
 * 04 next element
 *
 * 05 增加 删除 修改 查询 清空节点
 */

class Node {
  constructor(element, next) {
    this.element = element
    this.next = next
  }
}

class LinkedList {
  constructor(head, size) {
    this.head = null
    this.size = 0
  }
  _getNode(index) {
    if (index < 0 || index >= this.size) {
      throw new Error('cross the border')
    }
    let currentNode = this.head
    for (let i = 0; i < index; i++) {
      currentNode = currentNode.next
    }
    return currentNode
  }
  add(index, element) {
    if (arguments.length === 1) {
      element = index
      index = this.size
    }
    if (index < 0 || index > this.size) {
      throw new Error('cross the border')
    }
    if (index === 0) {
      // 保存原有head 的指向
      let head = this.head
      this.head = new Node(element, head)
    } else {
      let prevNode = this._getNode(index - 1)
      prevNode.next = new Node(element, prevNode.next)
    }
    this.size++
  }
  remove(index) {
    let rmNode = null
    if (index < 0 || index >= this.size) {
      throw new Error('cross the border')
    }
    if (index === 0) {
      rmNode = this.head
      if (!rmNode) {
        return undefined
      }
      this.head = rmNode.next
    } else {
      let prevNode = this._getNode(index - 1)
      rmNode = prevNode.next
      prevNode.next = rmNode.next
    }
    this.size--
    return rmNode
  }

  set(index, element) {
    let node = this._getNode(index)
    node.element = element
  }

  get(index) {
    return this._getNode(index)
  }

  clear() {
    this.head = null
    this.size = 0
  }
}

class Queue {
  constructor() {
    this.linkedList = new LinkedList()
  }
  enQueue(data) {
    this.linkedList.add(data)
  }
  deQueue() {
    return this.linkedList.remove(0)
  }
}
const qe = new Queue()
qe.enQueue('node1')
qe.enQueue('node2')
qe.enQueue('node3')

3.基于 Node 写出一静态服务器。接收请求并且响应特定目录(服务器目录)中的 html、css、js、图片等资源

const http = require('http')
const url = require('url')
const path = require('path')
const fs = require('fs')
const mime = require('mime')

const server = http.createServer((req, res) => {
  // console.log('请求进来了')
  // 1 路径处理
  let { pathname, query } = url.parse(req.url)
  pathname = decodeURIComponent(pathname)
  let absPath = path.join(__dirname, pathname)
  // console.log(absPath)
  // 2 目标资源状态处理
  fs.stat(absPath, (err, statObj) => {
    if (err) {
      res.statusCode = 404
      res.end('Not Found')
      return
    }
    if (statObj.isFile()) {
      // 此时说明路径对应的目标是一个文件,可以直接读取然后回写
      fs.readFile(absPath, (err, data) => {
        res.setHeader('Content-type', mime.getType(absPath) + ';charset=utf-8')
        res.end(data)
      })
    } else {
      fs.readFile(path.join(absPath, 'index.html'), (err, data) => {
        res.setHeader('Content-type', mime.getType(absPath) + ';charset=utf-8')
        res.end(data)
      })
    }
  })
})
server.listen(1234, () => {
  console.log('server is start.....')
})

上一篇 下一篇

猜你喜欢

热点阅读