Susan Potter

JavaScript (JS) :: The ubiquitous programming language of the Web

snippets

JavaScript Performance: Node CLI flags

These are some notes on performance engineering related to generating insights into Node.js (v8) performance. All material here is specific to the v8 engine found in Node.js, Chrome, and Opera. Generally useful things to learn to tune JavaScript (for the v8 engine) is natives syntax. You can run JS with natives syntax directives sprinkled throughout using the Node.js command-line: --allow-natives-syntax Read more on available natives syntax directives available from the …