- assert - 断言
- Buffer - 缓冲器
- child_process - 子进程
- cluster - 集群
- console - 控制台
- crypto - 加密
- dgram - 数据报
- dns - 域名服务器
- Error - 异常
- events - 事件
- fs - 文件系统
- global - 全局变量
- http - HTTP
- https - HTTPS
- module - 模块
- net - 网络
- os - 操作系统
- path - 路径
- process - 进程
- querystring - 查询字符串
- readline - 逐行读取
- repl - 交互式解释器
- stream - 流
- string_decoder - 字符串解码器
- timer - 定时器
- tls - 安全传输层
- tty - 终端
- url - 网址
- util - 实用工具
- v8 - V8引擎
- vm - 虚拟机
- zlib - 压缩
Node.js v10.8.0 文档
目录
Performance Timing API#
本段落不提供翻译
The Performance Timing API provides an implementation of the W3C Performance Timeline specification. The purpose of the API is to support collection of high resolution performance metrics. This is the same Performance API as implemented in modern Web browsers.
const { PerformanceObserver, performance } = require('perf_hooks');
const obs = new PerformanceObserver((items) => {
  console.log(items.getEntries()[0].duration);
  performance.clearMarks();
});
obs.observe({ entryTypes: ['measure'] });
performance.mark('A');
doSomeLongRunningProcess(() => {
  performance.mark('B');
  performance.measure('A to B', 'A', 'B');
});
Class: Performance#
本段落不提供翻译
performance.clearMarks([name])#
本段落不提供翻译
- name<string>
If name is not provided, removes all PerformanceMark objects from the
Performance Timeline. If name is provided, removes only the named mark.
performance.mark([name])#
本段落不提供翻译
- name<string>
Creates a new PerformanceMark entry in the Performance Timeline. A
PerformanceMark is a subclass of PerformanceEntry whose
performanceEntry.entryType is always 'mark', and whose
performanceEntry.duration is always 0. Performance marks are used
to mark specific significant moments in the Performance Timeline.
performance.measure(name, startMark, endMark)#
本段落不提供翻译
Creates a new PerformanceMeasure entry in the Performance Timeline. A
PerformanceMeasure is a subclass of PerformanceEntry whose
performanceEntry.entryType is always 'measure', and whose
performanceEntry.duration measures the number of milliseconds elapsed since
startMark and endMark.
The startMark argument may identify any existing PerformanceMark in the
Performance Timeline, or may identify any of the timestamp properties
provided by the PerformanceNodeTiming class. If the named startMark does
not exist, then startMark is set to timeOrigin by default.
The endMark argument must identify any existing PerformanceMark in the
Performance Timeline or any of the timestamp properties provided by the
PerformanceNodeTiming class. If the named endMark does not exist, an
error will be thrown.
performance.nodeTiming#
本段落不提供翻译
An instance of the PerformanceNodeTiming class that provides performance
metrics for specific Node.js operational milestones.
performance.now()#
本段落不提供翻译
- Returns: <number>
Returns the current high resolution millisecond timestamp, where 0 represents
the start of the current node process.
performance.timeOrigin#
本段落不提供翻译
The timeOrigin specifies the high resolution millisecond timestamp at
which the current node process began, measured in Unix time.
performance.timerify(fn)#
本段落不提供翻译
- fn<Function>
Wraps a function within a new function that measures the running time of the
wrapped function. A PerformanceObserver must be subscribed to the 'function'
event type in order for the timing details to be accessed.
const {
  performance,
  PerformanceObserver
} = require('perf_hooks');
function someFunction() {
  console.log('hello world');
}
const wrapped = performance.timerify(someFunction);
const obs = new PerformanceObserver((list) => {
  console.log(list.getEntries()[0].duration);
  obs.disconnect();
});
obs.observe({ entryTypes: ['function'] });
// A performance timeline entry will be created
wrapped();
Class: PerformanceEntry#
本段落不提供翻译
performanceEntry.duration#
本段落不提供翻译
The total number of milliseconds elapsed for this entry. This value will not be meaningful for all Performance Entry types.
performanceEntry.name#
本段落不提供翻译
The name of the performance entry.
performanceEntry.startTime#
本段落不提供翻译
The high resolution millisecond timestamp marking the starting time of the Performance Entry.
performanceEntry.entryType#
本段落不提供翻译
The type of the performance entry. Currently it may be one of: 'node',
'mark', 'measure', 'gc', 'function', or 'http2'.
performanceEntry.kind#
本段落不提供翻译
When performanceEntry.entryType is equal to 'gc', the performance.kind
property identifies the type of garbage collection operation that occurred.
The value may be one of:
- perf_hooks.constants.NODE_PERFORMANCE_GC_MAJOR
- perf_hooks.constants.NODE_PERFORMANCE_GC_MINOR
- perf_hooks.constants.NODE_PERFORMANCE_GC_INCREMENTAL
- perf_hooks.constants.NODE_PERFORMANCE_GC_WEAKCB
Class: PerformanceNodeTiming extends PerformanceEntry#
本段落不提供翻译
Provides timing details for Node.js itself.
performanceNodeTiming.bootstrapComplete#
本段落不提供翻译
The high resolution millisecond timestamp at which the Node.js process completed bootstrapping. If bootstrapping has not yet finished, the property has the value of -1.
performanceNodeTiming.loopExit#
本段落不提供翻译
The high resolution millisecond timestamp at which the Node.js event loop
exited. If the event loop has not yet exited, the property has the value of -1.
It can only have a value of not -1 in a handler of the 'exit' event.
performanceNodeTiming.loopStart#
本段落不提供翻译
The high resolution millisecond timestamp at which the Node.js event loop started. If the event loop has not yet started (e.g., in the first tick of the main script), the property has the value of -1.
performanceNodeTiming.nodeStart#
本段落不提供翻译
The high resolution millisecond timestamp at which the Node.js process was initialized.
performanceNodeTiming.v8Start#
本段落不提供翻译
The high resolution millisecond timestamp at which the V8 platform was initialized.
Class: PerformanceObserver#
new PerformanceObserver(callback)#
本段落不提供翻译
- 
callback<Function>- list<PerformanceObserverEntryList>
- observer<PerformanceObserver>
 
PerformanceObserver objects provide notifications when new
PerformanceEntry instances have been added to the Performance Timeline.
const {
  performance,
  PerformanceObserver
} = require('perf_hooks');
const obs = new PerformanceObserver((list, observer) => {
  console.log(list.getEntries());
  observer.disconnect();
});
obs.observe({ entryTypes: ['mark'], buffered: true });
performance.mark('test');
Because PerformanceObserver instances introduce their own additional
performance overhead, instances should not be left subscribed to notifications
indefinitely. Users should disconnect observers as soon as they are no
longer needed.
The callback is invoked when a PerformanceObserver is
notified about new PerformanceEntry instances. The callback receives a
PerformanceObserverEntryList instance and a reference to the
PerformanceObserver.
performanceObserver.disconnect()#
本段落不提供翻译
Disconnects the PerformanceObserver instance from all notifications.
performanceObserver.observe(options)#
本段落不提供翻译
- 
options<Object>- entryTypes<string[]> An array of strings identifying the types of- PerformanceEntryinstances the observer is interested in. If not provided an error will be thrown.
- buffered<boolean> If true, the notification callback will be called using- setImmediate()and multiple- PerformanceEntryinstance notifications will be buffered internally. If- false, notifications will be immediate and synchronous. Default:- false.
 
Subscribes the PerformanceObserver instance to notifications of new
PerformanceEntry instances identified by options.entryTypes.
When options.buffered is false, the callback will be invoked once for
every PerformanceEntry instance:
const {
  performance,
  PerformanceObserver
} = require('perf_hooks');
const obs = new PerformanceObserver((list, observer) => {
  // called three times synchronously. list contains one item
});
obs.observe({ entryTypes: ['mark'] });
for (let n = 0; n < 3; n++)
  performance.mark(`test${n}`);
const {
  performance,
  PerformanceObserver
} = require('perf_hooks');
const obs = new PerformanceObserver((list, observer) => {
  // called once. list contains three items
});
obs.observe({ entryTypes: ['mark'], buffered: true });
for (let n = 0; n < 3; n++)
  performance.mark(`test${n}`);
Class: PerformanceObserverEntryList#
本段落不提供翻译
The PerformanceObserverEntryList class is used to provide access to the
PerformanceEntry instances passed to a PerformanceObserver.
performanceObserverEntryList.getEntries()#
本段落不提供翻译
- Returns: <PerformanceEntry[]>
Returns a list of PerformanceEntry objects in chronological order
with respect to performanceEntry.startTime.
performanceObserverEntryList.getEntriesByName(name[, type])#
本段落不提供翻译
- name<string>
- type<string>
- Returns: <PerformanceEntry[]>
Returns a list of PerformanceEntry objects in chronological order
with respect to performanceEntry.startTime whose performanceEntry.name is
equal to name, and optionally, whose performanceEntry.entryType is equal to
type.
performanceObserverEntryList.getEntriesByType(type)#
本段落不提供翻译
- type<string>
- Returns: <PerformanceEntry[]>
Returns a list of PerformanceEntry objects in chronological order
with respect to performanceEntry.startTime whose performanceEntry.entryType
is equal to type.
Examples#
Measuring the duration of async operations#
本段落不提供翻译
The following example uses the Async Hooks and Performance APIs to measure the actual duration of a Timeout operation (including the amount of time it to execute the callback).
'use strict';
const async_hooks = require('async_hooks');
const {
  performance,
  PerformanceObserver
} = require('perf_hooks');
const set = new Set();
const hook = async_hooks.createHook({
  init(id, type) {
    if (type === 'Timeout') {
      performance.mark(`Timeout-${id}-Init`);
      set.add(id);
    }
  },
  destroy(id) {
    if (set.has(id)) {
      set.delete(id);
      performance.mark(`Timeout-${id}-Destroy`);
      performance.measure(`Timeout-${id}`,
                          `Timeout-${id}-Init`,
                          `Timeout-${id}-Destroy`);
    }
  }
});
hook.enable();
const obs = new PerformanceObserver((list, observer) => {
  console.log(list.getEntries()[0]);
  performance.clearMarks();
  observer.disconnect();
});
obs.observe({ entryTypes: ['measure'], buffered: true });
setTimeout(() => {}, 1000);
Measuring how long it takes to load dependencies#
本段落不提供翻译
The following example measures the duration of require() operations to load
dependencies:
'use strict';
const {
  performance,
  PerformanceObserver
} = require('perf_hooks');
const mod = require('module');
// Monkey patch the require function
mod.Module.prototype.require =
  performance.timerify(mod.Module.prototype.require);
require = performance.timerify(require);
// Activate the observer
const obs = new PerformanceObserver((list) => {
  const entries = list.getEntries();
  entries.forEach((entry) => {
    console.log(`require('${entry[0]}')`, entry.duration);
  });
  obs.disconnect();
});
obs.observe({ entryTypes: ['function'], buffered: true });
require('some-module');