Tag: javascript

What hides in your node_modules?

March 10, 2022 By Mark Otto 0

Node v17.7.0 (Current) Released — Updates to nghttp2 and npm (8.5.2), some new options for net.Socket and net.Server, and Ben Noordhuis (one of the most prolific Node contributors who stepped back as a core committer for reasons in 2013) is officially fully back as a…

TypeScript 2.6 released

March 4, 2022 By Mark Otto Off

TypeScript 4.6 Released (And It Even Benefits Non-TS Users!) — The typed superset of JavaScript takes another step forward with the addition of the es2022 target, allowing code in constructors before super(), improved recursion depth checks, more syntax errors that can be detected in JavaScript…

Using ‘execa’ to run other processes

March 3, 2022 By Mark Otto 0

Running Commands with execa in Node — We’ve linked to Sindre Sorhus’ popular execa process execution library many times over the years, but here’s a thorough tutorial which also shows off the value execa brings over the vanilla child_process. Simon Plenderleith Tired of Egregious Egress?…

How to read the spec behind JavaScript

February 25, 2022 By Mark Otto Off

Learn the Fundamentals of Rx.js — This useful JavaScript library is great for managing events that happen over time, and in this detailed video course Steve Kinney covers what you need to know to make use of it — including observables, events, intervals, timers, operators,…

Node gains HTTPS module import support

February 24, 2022 By Mark Otto 0

Next.js 12.1 Released — The popular React framework introduces a beta version of on-demand incremental static regeneration (ISR), now automatically configures Jest for you, and can create smaller, more efficient ‘standalone’ builds of your app for production deployment. Vercel Senior Backend Developer — Are you looking…

The State of JS results are in

February 18, 2022 By Mark Otto Off

Express.js 5.0 Now in Beta — Considering that the first alpha of 5.0 was over seven years ago, this is a big step for the still wildly popular and influential Node.js Web app library. There’s also thorough docs of the 5.x API here. Requiring Node.js 4…

Express 5 now in beta

February 17, 2022 By Mark Otto 0

Node v17.5.0 (Current) Released — Sadly this release dropped just hours after last week’s issue of Node Weekly, but this is the first release of Node with native (though currently experimental behind the –experimental-fetch option) Fetch API support (more on what that means here) so…

The seven figure JavaScript app

February 11, 2022 By Mark Otto Off

🥊  Move Over JavaScript? How Some Backend Languages are Coming to the Front-End — You might think this is about using WebAssembly to run Python in the browser or something, but no. It’s about the growing popularity of maintaining a WebSocket connection to a backend…

Writing an SD card driver in TypeScript

February 10, 2022 By Mark Otto 0

MikroORM 5: A TypeScript ORM for Node.js — Based upon the popular ‘Data Mapper’ pattern, MikroORM (homepage) is a popular and powerful Node.js ORM that supports a variety of SQL and NoSQL databases. v5 is a year in the making and boasts improved type safety,…

Get decorating with Babel 7.17.0

February 4, 2022 By Mark Otto Off

Writing a Printer Driver in JavaScript — “Writing a printer driver in JavaScript sounds ridiculous,” starts the author, and while the definition of ‘driver’ is arguable here (it’s more a filter?), this is nonetheless an interesting story and solution to the author’s problem. Dan Pastusek Babel…