NodeJS Official
AWS Lambda gets a Node 20 LTS runtime
#511 — November 21, 2023 Read on the Web ‘A Node + TypeScript + ts-node + ESM Experience That Works’ — It’s just three files: 1package.json , 1tsconfig.json and a utilities file, and you’re good to go. As someone on Hacker News said: “Sometimes the most valuable guide is a Read more…
NodeJS Official
Milo: A new HTTP parser for Node?
#510 — November 14, 2023 Read on the Web 36 Node CLI App Best Practices — From the creator of several Node-based CLI tools comes this helpful collection of best practices for building “successful, empathic and user-friendly” CLI tools using Node, plus an appendix rounding up popular CLI framework options. Liran Read more…
NodeJS Official
Sizing up your images with Sindre
#509 — November 7, 2023 Read on the Web Awesome Node Security: A Curated List of Node Security Resources — Includes links to libraries like Helmet (which just had a new release a few hours ago), educational resources, tools, and even stories of incidents like the left-pad incident (which, somehow, was Read more…
NodeJS Official
Deno 1.38 features HTML documentation, hot module replacement
The Deno runtime for JavaScript, TypeScript, and WebAssembly has been updated with new HTML capabilities. The latest updates enhance documentation and client-side navigation in both Deno and the Fresh web framework. Unveiled November 2, Deno 1.38 offers “significant” improvements to the 1deno doc command, highlighted by an ability to produce Read more…
NodeJS Official
ES module autodetection coming to Node
#508 — October 31, 2023 Read on the Web Node v21.1 (Current) Released with ESM Detection Feature — “The new flag 1–experimental-detect-module can be used to automatically run ES modules when their syntax can be detected. … We hope to make detection enabled by default in a future version.” Michaël Zasso Read more…
NodeJS Official
Using JavaScript’s built-in objects
JavaScript’s built-in objects include 1Object , 1JSON , 1console , 1String , 1Math , 1Date , and the 1window and 1global objects. These are some of the most important and useful parts of the JavaScript language. Together, they are essential elements of the programming environment in both the browser and server-side platforms Read more…