Skip to content Skip to sidebar Skip to footer
Showing posts with the label V8

Does Javascript Have The Equivalent Of Python's __getattribute__?

Does JavaScript have the equivalent of Python's __getattribute__? In the sense that I'd lik… Read more Does Javascript Have The Equivalent Of Python's __getattribute__?

Node Js / V8 Destructuring Bug?

Using node 8.4.0: $ node > {x, y} = {x: 1, y: 2} { x: 1, y: 2 } > However, the following err… Read more Node Js / V8 Destructuring Bug?

Hidden Classes And Equivalence Between {} Object Vs. Custom Constructor (v8)

Given this article: http://richardartoul.github.io/jekyll/update/2015/04/26/hidden-classes.html If … Read more Hidden Classes And Equivalence Between {} Object Vs. Custom Constructor (v8)

Filtering Unwanted Strings In V8 Heap Snapshot Programmatically (without Dev-tool Gui)

I have a Node app that sends JavaScript source code as string to a worker thread that executes it i… Read more Filtering Unwanted Strings In V8 Heap Snapshot Programmatically (without Dev-tool Gui)

How Can I Include Another Js File File In Today's V8?

I find an old anwser and later updates here, but it is hard for me to adapt this code to the latest… Read more How Can I Include Another Js File File In Today's V8?

How Do I Prevent Malicious Javascript In V8 (with Python)

I'm using PyV8 to run untrusted javascript. How can I detect and kill javascript that has inifi… Read more How Do I Prevent Malicious Javascript In V8 (with Python)