“It’s a new year! So let’s look back at how npm, the most popular package manager in the world, fared in 2023. We will look at some of the major trends in the ecosystem and investigate what the data reveal about how npm grew over the past year.”
“We’ll also take a deeper dive into some of the malware and spam issues npm faced over the course of the year, and answer questions you didn’t knew you wanted to know the answers to (such as which package has the longest name or is biggest in size).”
“The Bun Shell is a new experimental embedded language and interpreter in Bun that allows you to run cross-platform shell scripts in JavaScript & TypeScript.”
import { $ } from "bun";
// to stdout:
await $`ls *.js`;
// to string:
const text = await $`ls *.js`.text();