From 0d6764988097145330c031654f243aa6f93467d3 Mon Sep 17 00:00:00 2001 From: "Pooja D.P" Date: Thu, 8 Oct 2020 10:28:49 +0400 Subject: [PATCH] doc: add require statement in the example --- doc/api/v8.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/api/v8.md b/doc/api/v8.md index 54e01806079e0a..064d64c382446d 100644 --- a/doc/api/v8.md +++ b/doc/api/v8.md @@ -104,6 +104,8 @@ Chrome DevTools. The JSON schema is undocumented and specific to the V8 engine, and may change from one version of V8 to the next. ```js +// Print heap snapshot to the console +const v8 = require('v8'); const stream = v8.getHeapSnapshot(); stream.pipe(process.stdout); ```