Showing 61-80 of 97 results in 0.01s suggest a link
benediktmeurer.de/2016/12/19/following-up-on-javascript-benchmarks
Following up on JavaScript benchmarks * Benedikt MeurerDec 2016 - Following up on my latest blog post on the truth about traditional javascript benchmarks here are a couple of comments I'd like to address. First of all, I'm over-exaggerating quite a bit with the intention to actually trigger a discussion, for example not ..stevesouders.com/blog/2009/09/08/doloto-javascript-download-optimizer
Doloto: JavaScript download optimizer | High Performance Web SitesSep 2009 - He spoke about Doloto, a system for splitting up huge javascript payloads for better performance. an AJAX application optimization tool, especially useful for large and complex Web 2.0 applications that contain a lot of code, such as Bing Maps, Hotmail, etc..benediktmeurer.de/2016/12/16/the-truth-about-traditional-javascript-benchmarks
The truth about traditional JavaScript benchmarks * Benedikt MeurerDec 2016 - We took serious hits on the SunSpider benchmark when we removed this benchmark specific optimizations back in 2013 and 2014, but we totally believe that it doesn't make sense to optimize for a benchmark while at the same time penalizing the real world use c..github.com/ratel-rust/ratel-core
GitHub - ratel-rust/ratel-core: High performance JavaScript to JavaScript compiler with a Rust coreRatel is a high performance javascript to javascript compiler with a Rust core. Online REPL with Wasm, courtesy of cmtt. This project is created and maintained by Maciej Hirsz with the help of awesome contributors.hackernoon.com/3-javascript-performance-mistakes-you-should-stop-doing-ebf84b9de951
3 JavaScript Performance Mistakes You Should Stop Doing | HackerNoonAmong them were forEach, reduce, map, filter — they made us feel the language is growing, getting more functional, writing code became more fun and smooth, and the result was easier to read and understand. It turns out, the good old for loop (and also while..stevesouders.com/blog/2009/12/07/downloading-javascript-as-strings
(down)Loading JavaScript as strings | High Performance Web SitesDec 2009 - Deferred loading is certainly achievable using the non-blocking techniques I’ve researched – but my techniques might not be the best choice for this yet-to-be-used javascript code. I recently blogged about a great optimization used in mobile Gmail for loadi..smashingmagazine.com/2012/11/writing-fast-memory-efficient-javascript
How To Write Fast, Memory-Efficient JavaScript -- Smashing MagazineNov 2012 - It’s easy to see a number of micro-benchmarks showing that N is more optimal than M in V8, but test it in a real module of code or in an actual application, and the true impact of those optimizations may be much more minimal than you were expecting. If you’..nolanlawson.com/2021/02/23/javascript-performance-beyond-bundle-size
JavaScript performance beyond bundle size | Read the Tea LeavesFeb 2021 - For Rollup, I would really love to have a graphical interface like Webpack Bundle Analyzer. But the next best thing I’ve found is Rollup Plugin Analyer, which will output your module sizes to the console while building. But in the meantime, there are lots o..web.archive.org/web/20060523204906/thinkvitamin.com/features/webapps/serving-javascript-fast
Vitamin Features >> Serving JavaScript FastMay 2006 - For super-bonus points, we could analyze the occurrence of scripts and style sheets together on pages we serve, to determine which files would be best to merge (files that nearly always appear together are good candidates for merging). For small CSS and Jav..reaktor.com/blog/javascript-performance-fundamentals-make-bluebird-fast
Three JavaScript performance fundamentals that make Bluebird fast - ReaktorAn optimization that is used internally in Bluebird to a great extent is the usage of an explicit plain object to hold contextual data. If the fs.readFile API could be modified to accept a context object, applying the optimization on the example would look ..blog.mozilla.org/nnethercote/2011/07/01/faster-javascript-parsing
Faster JavaScript parsing - Nicholas NethercoteJul 2011 - The main scanning loop (in getTokenInternal()) now first checks every char to see if its value is greater than 128. The scanner can detect them immediately and use another look-up table to convert the token char to the internal token kind without any furthe..bocoup.com/blog/info-hiding-in-js
Information Hiding in JavaScript - performance, tools and workflow, web applications - BocoupInstantiate a player var player = new Player(); // Award the player with two coins: player.addCoin(); player.addCoin(); Just like Dr. Emmit Brown, we can experiment with these visions of the future to create something remarkable.The Continuum project gives ..asserttrue.blogspot.com/2009/04/two-techniques-for-faster-javascript.html
blogorrhea: Two techniques for faster JavaScriptApr 2009 - I like challenges too.When someone asks me what's the single best way to speed up "a slow script," naturally I want to know what the script is spending most of its time doing. In browser scripting, it's typical that a "slow" script operation either involves..bocoup.com/blog/the-strategy-pattern-in-javascript
The Strategy Pattern in JavaScript - performance, tools and workflow, web applications - BocoupDesign patterns are derived from scrutiny of best practices in the real world (not your old CS prof’s black cauldron). You know two different ways to generate an audio tone, each with benefits and drawbacksGoal: Generate an audio toneApproaches: fixed-size ..medium.com/@encryb/comparing-performance-of-javascript-cryptography-libraries-42fb138116f3
Comparing Performance of JavaScript Cryptography Libraries | by Encryb | MediumIn real world application, the difference is even more significant since pure javascript libraries need to run inside Web Workers or restrict usage to very small data sets to reduce UI thread blocking. The performance advantage would be even greater if not ..javascriptweblog.wordpress.com/2010/05/10/express-yourself-rapid-function%C2%A0definition
express yourself: rapid function definition - JavaScript, JavaScript...May 2010 - I think its a nice illustration of why eval is not always evil – and how when used judiciously it can actually be a good friend. I also created a global function in which the expression is not applied to a function result but instead manipulates the first a..datapointed.net/2013/01/petri-dish-game-of-life-html5-javascript-benchmark
Petri Dish - The Game Of Life Javascript BenchmarkJan 2013 - However, by 1999, both major Web browsers shipped with a high-quality Java virtual machine which would execute integer code nearly as fast as the equivalent C. By happenstance, I’d just founded an agency with a crackerjack engineering team, and we used Java..