Robuta

https://www.yagiz.co/improving-nodejs-loader-performance/ Improving Node.js loader performance - Yagiz Nizipli's blog Jul 13, 2025 - CommonJS and ES modules are 2 sides of a coin. Node.js supports both of them. So, how can we improve the performance of Node.js loaders? improving node jsloaderyagiz https://www.yagiz.co/timing-attacks-on-node-js/ Timing Attacks on Node.js - Yagiz Nizipli's blog Jul 13, 2025 - I've been working with Node.js for quite a long time. So, believe me when I say there's a library called eslint-plugin-security to detect common mistakes and... node js yagiztiming attacks https://www.yagiz.co/using-v8-fast-api-in-node-js-core/ Using V8 Fast API in Node.js core - Yagiz Nizipli's blog Dec 9, 2025 - Embedder functions implemented in C++ incur a high overhead, so V8 provides an API to implement fast-path C functions which may be invoked directly from JITted... node js corefast apiusing https://www.yagiz.co/reducing-the-cost-of-string-serialization-in-nodejs-core/ Reducing the cost of string serialization in Node.js core - Yagiz Nizipli's blog Dec 9, 2025 - Serializing strings in Node.js has been a pain point for web developers, particularly when it comes to URL operations. Recently, we conducted a research to... node js corereducingcost https://www.yagiz.co/developing-fast-builtin-task-runner/ Developing fast & built-in task runner in Node.js core - Yagiz Nizipli's blog Jul 13, 2025 - With this blog post, I'm going to explain and analyze the steps I've taken to land a super-fast, built-in task runner in Node.js core. For those who are not... runner node jsdevelopingfast https://www.yagiz.co/implementing-node-js-url-parser-in-webassembly-with-rust/ Implementing Node.js URL parser in WebAssembly with Rust - Yagiz Nizipli's blog Dec 9, 2025 - Even though, this started as an experiment, implementing the URL parser in Rust using WebAssembly became the graduation project for my Masters in Computer... node jsurl parserimplementing https://www.yagiz.co/performance-metrics-and-benchmarking-nodejs/ Performance metrics and benchmarking on Node.js - Yagiz Nizipli's blog Dec 9, 2025 - Lately, I've found myself worrying more and more about performance and the amount of time it takes for a function or a task to be taken on Node.js. node js yagizperformance