Node.js 进阶途径

  • Node.js 源码PR
  • Node.js 性能测试 node-clinic
  • NPM 包推荐
    • get-value
      • 尝试访问undefined变量的属性,必然会报错
      • 如何避免这种情况呢,get-value 包非常实用
        const get = require('get-value');
        const obj = { a: { b: { c: { d: 'foo' } } } };
        get(obj, 'a.v.g.g')  //=> 返回'undefined',但不会造成程序奔溃
      
      • 性能
        object get opts:100000: 1.884ms   (原生的方法)
        get-value opts:100000: 40.796ms
        对比同类包性能对比,见github
      
    • set-value
    • node-cache
    • memory-cache

你可能感兴趣的:(Node.js 进阶途径)