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

Profiling Javascript Code On Nodejs - Possible Approaches

My aim is to develop a java script profiler for nodejs . The requirements are as under : Should be… Read more Profiling Javascript Code On Nodejs - Possible Approaches

V8 Will Not Print Out Disassembly

I compiled v8 with the disassembler option: tools/dev/v8gen.py x64.debug -- v8_enable_disassembler… Read more V8 Will Not Print Out Disassembly

How To Disable V8's Optimizing Compiler

I'm writing a constant-time string comparison function (for node.js) and would like to disable … Read more How To Disable V8's Optimizing Compiler

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?

Customized Stack Traces In Google Chrome Developer Tools?

I'm looking to customize the items that show up in the strack trace panel in the Scripts tab of… Read more Customized Stack Traces In Google Chrome Developer Tools?

Is The Function() Constructor Not Optimized By V8, Like Eval?

We are trying a way to receive web components via WebSockets. Those components contains custom scri… Read more Is The Function() Constructor Not Optimized By V8, Like Eval?

How Do I Go Into Eval('debugger') Mode When Already Stopped At 'regular' Debugger Statement?

I recently started to swap out all my debugger statements with eval('debugger') statements.… Read more How Do I Go Into Eval('debugger') Mode When Already Stopped At 'regular' Debugger Statement?

Access The Abstract Syntax Tree Of V8 Engine

Is it possible to access the AST of the v8 engine, for a given JavaScript code? I'm working on … Read more Access The Abstract Syntax Tree Of V8 Engine