#514 — December 12, 2023 |
✍️ We're prepping our annual roundup issue for next week, just before we take our Christmas break, so keep an eye out for that. We're also considering the future. We're exploring covering some extra server-side and non-browser topics, like Bun, Deno, serverless, etc. Stay tuned for a survey to gather your input. :-) |
|
▶ Node.js Configurations Masterclass — Well-known Node developer and TSC member Matteo looks at the phenomenon of so much Node code depending on the value of environment variables (and Matteo Collina |
💡 There is a music bed throughout the video you might dislike, in which case Matteo's ▶️ " |
Redis with Wings - Built for Modern Node Applications — Dragonfly is a drop-in Redis® replacement with significant performance and scalability advantages. Applications built on Dragonfly deliver incredibly fast user experiences while reducing both costs and complexity. Dragonfly sponsor |
Maglev: A Serious Look at V8’s Fastest Optimizing JIT — A deep dive into how the V8 JavaScript engine (as used in Node) is getting faster thanks to work on its Maglev JIT compiler which sits in between the existing Sparkplug and TurboFan compilers (which offer distinct compilation vs execution speed tradeoffs). The V8 Team |
In other V8 spelunking news, Andy Wingo has been taking a look into progress with V8's garbage collection. What does V8’s GC even look like these days? |
IN BRIEF: |
|
The Complete Puppeteer Cheatsheet — If you want to control a headless Chrome browser from Node, Puppeteer is for you. Now we just need a Playwright one as well ;-) Mohan Ganesan |
▶ Deploying Node.js with Google's Duet AI — Duet AI is Google’s AI-based assistive agent that works both in the IDE and within Google Cloud. For now. Google Cloud |
Get Started with Node.js 20 on Red Hat OpenShift — Red Hat has released a fully-supported Node 20 container image. Lucas Holmquist (Red Hat) |
Job Scheduling in Node with Agenda: A Beginner's Guide
|
Node.js, TypeScript and ESM: It Doesn't Have to Be Painful
|
🛠 Code & Tools |
Name Checker: Check if a Project Name is Taken — An online tool that checks a bunch of different package registries (npm, GitHub, GitLab, PyPI, Maven, RubyGems, Go packages, Rust crate, etc.) to see if the name is used by another project. Todd Cooke |
Auth. Built for Devs, by Devs — Easily add login, registration, SSO, MFA, user management and a bazillion more auth features to your application. FusionAuth sponsor |
Croner 8.0: 'Cron' for JavaScript and TypeScript — Trigger functions upon the schedule of your choice using the classic cron syntax. Works in Node, Deno, Bun and the browser, across time zones, offers error handling and overrun protection. Hexagon |
Rockpack 4.2: An Alternative React App Builder — Akin to Create React App, the goal is to get project setup time as low as possible, but Rockpack holds different opinions around how far to take things and packs in a lot of ideas including server side rendering, linting, and testing. Alex Sergey |
npm-check-extras: Check for Outdated and Unused Dependencies — A CLI app to check for outdated and unused dependencies and run update/delete over those you select. akgondber |
p-map 7.0: Map Over Promises Concurrently — Differs from Sindre Sorhus |
|
node-re2: Bindings for Google's RE2 Regular Expression Library — RE2 is a C++ finite-state machine-based regex library that takes a different approach to PCRE. It'll appeal to you if you want to avoid exponential runtime issues with certain regexes/ReDOS or so-called ‘evil input’. Eugene Lazutkin |
💡 You can experience the difference in approach by running this simple ReDoS script, CTRL+Cing it once you get bored, then switching in RE2, which completes quickly :-) |
|