Call native V8 engine functions.
npm install v8.js
Call native V8 engine functions.
Can access all functions define in V8 runtime.
For brevity's sake not all functions have been integrated to V8.js, if you need a function not listed raise a new issue explaining your use-case.
npm install v8.js
Or add a tag in your HTML page:
``html`
V8.js exports a limited list of functions from the engine core that you can use.
In order for the package to work, you have to allow native syntax with the --allow-natives-syntax flag.
`js
import v8, { isNativeActive } from "v8.js";
console.log(v8.collectGarbage());
`
* Node: node --allow-natives-syntax file.jschrome --js-flags="--allow-natives-syntax"
* Chrome/Chromium:
Trigger the internal garbage collector.
`js`
v8.collectGarbage();
Return the name of the function passed in argument
`js`
v8.getFunctionName(fn);
Prepare a function to be optimized by the engine. This is the first step of the optimization routine.
`js`
v8.prepareFunctionForOptimization(fn);
#### Arguments
* {...Function} Set of functions that need to be prepared.
Set a function to be optimized on its next call. This is the second step of the optimization routine.
`js`
v8.optimizeFunctionOnNextCall(...fns);
#### Arguments
* {...Function} Set of functions to target for optimization.
Return integer representing the optimization status of a function in a binary flag format.
`js`
const status = v8.getOptimizationStatus(...fns);
#### Arguments
* {...Function} Set of functions, give the optimization status for the first one.
- opti-status` -- Get the optimization status of a function from the point of view of V8 engine