Tag: node

AWS Lambda gets a Node 20 LTS runtime

November 21, 2023 By Mark Otto 0

πŸ₯³ Talking of which, TypeScript 5.3 has been released. It supports the latest updates to the import attributes proposal, has enhanced type narrowing in numerous contexts, provides interactive inlay hints for types in the editor, and more. Node.js 20.x (LTS) Runtime Now Available in AWS Lambda…

Milo: A new HTTP parser for Node?

November 14, 2023 By Mark Otto 0

πŸ‘ Note: There’s a ‘last update’ badge saying 2021, but it’s incorrect – there was a big update this month πŸ˜„ β–Ά  Talks from the Node.js Collab Summit 2023 β€” If you want to stay up to date with the latest discussions within the Node project, here are the…

Node 20 gets faster, approaches LTS status

October 3, 2023 By Mark Otto 0

Honey, I Shrunk the npm Package! β€” Compression sits under the hood of everything on the modern Web, including npm packages (distributed as gzipped tarballs). Could the standard gzip approach be showing its age in both speed and effectiveness? Jamie runs a package through a…

Does Node need a mascot of its own?

September 19, 2023 By Mark Otto 0

Does Node.js Need a Mascot? β€” Go has its cute gopher, Deno has a dinosaur, Bun has, well.. a bun, but what does Node have? Nothing official, as such, and Matteo Collina ponders whether we should change that. Most of the suggestions seem tongue in…

TypeScript 5.2, Node 20.6, and Astro 3.0

September 7, 2023 By Mark Otto Off

πŸ˜… We’re back! After two weeks enjoying the blistering desert heat of Las Vegas and downpours of Storm Hilary, I’m ready to get back to the weekly JavaScript roundups – fingers crossed we’re here each week till Christmas now πŸ™‚__Peter Cooper and the Cooperpress team Good…

Node v20.6.0 released with .env support

September 5, 2023 By Mark Otto 0

Node v20.6.0 (Current) Released β€” As we teased last week, the latest Node release includes all-new built-in support for setting environment variables via .env files, so you may no longer have a need for dotenv, depending on your use case. You can now also use…

Why Node permissions are experimental for now

June 27, 2023 By Mark Otto 0

A Day in the Life of an Ethical Hacker β€” Ethical hackers proactively identify security weaknesses before they can be exploited by malicious actors. Learn practical steps for getting started with ethical hacking, from reconnaissance and vulnerability exploitation to responsible disclosure. Snyk A Look at TypeScript…

Getting under Node’s skin

June 20, 2023 By Mark Otto 0

β–Ά  Recreating a JS Runtime to Understand Node’s Magic β€” Popular speaker, educator, Microsoft MVP and Node.js core team member Erick gives a very enthusiastic talk on the latest β€˜hello world’ in the JavaScript world: building a runtime 😏 Somehow, Erick manages to run through the…

Hands on with Node’s new built-in test runner

June 6, 2023 By Mark Otto 0

qnm: A CLI Tool to Look Into node_modules β€” If you’ve been into a node_modules folder and been overwhelmed, this tool (supporting both npm and Yarn) lets you dig around with extra guidance as to what is what. You can use fuzzy search to find…

Getting recursive with Node 20.1

May 9, 2023 By Mark Otto 0

???? That said, the fs readdir and opendir functions get a new recursive option which, a commenter notes, could replace some popular third party packages that do the same thing, such as recursive-readdir which gets over 5 million downloads a week(!) Smooth Logging for Node.js…