Lines Matching refs:snapshot
1 # Node.js startup snapshot builder
3 This is the V8 startup snapshot builder of Node.js. Not to be confused with
4 V8's own snapshot builder, which builds a snapshot containing JavaScript
5 builtins, this builds a snapshot containing Node.js builtins that can be
6 deserialized on top of V8's own startup snapshot. When Node.js is launched,
8 an embedded snapshot, which readily contains the result of the bootstrap, so
11 Currently only the main context of the main Node.js instance supports snapshot
12 deserialization, and the snapshot does not yet cover the entire bootstrap
17 The snapshot builder is built with the `node_mksnapshot` target in `node.gyp`
21 In the default build of the Node.js executable, to embed a V8 startup snapshot
34 `src/node_snapshot_stub.cc` in structure, but contains the snapshot data
36 `node_snapshot.cc` to produce the final Node.js executable with the snapshot
39 For debugging, Node.js can be built without Node.js's own snapshot if
40 `--without-node-snapshot` is passed to `configure`. A Node.js executable
41 with Node.js snapshot embedded can also be launched without deserializing
42 from it if the command line argument `--no-node-snapshot` is passed.