January 23, 2024
Turn on loading images 😉- Logo ECMAScript News

npm in review: a 2023 retrospective on growth, security, and quirky facts

socket.dev github.com/Planeshifter @SocketSecurity@fosstodon.org

“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).”

Prettier 3.2: Support JSONC and Angular’s ICU expression

prettier.io github.com/sosukesuzuki github.com/prettier

Highlights:
  • CLI performance improvements (as figured out by Fabio Spampinato) are slated for version 4.0.
  • Support for `.jsonc` files (JSON with comments and optional trailing commas)
  • Angular: Support formatting for Angular ICU expression
  • JavaScript:
    • Avoid introducing linebreaks in template interpolations
    • Preserve empty lines in multi-line method chains
    • Fix inconsistencies for optional chaining
    • Fix comments in if
  • TypeScript: Improve conditional type alias layout
  • Ember/Handlebars: Preserve path literal segments
  • GraphQL: Improve GraphQL union types formatting

Rspack 0.5: module federation and more

www.rspack.dev github.com/web-infra-dev

Most important new feature: module federation. Details are described in another blog post.

Bun v1.0.23: importing & embedding SQLite databases and more

bun.sh github.com/oven-sh

Highlights:
  • Importing SQLite databases:
    import db from './my.db' with {type: "sqlite"};
    
    const {id} = db
      .query("SELECT id FROM users LIMIT 1")
      .get();
    
    console.log(id); // 1
    
    You can also embed such a database in a single-file executable built by Bun.
  • Support for resource management (a stage 3 ECMAScript proposal)
  • Support for import.meta.dirname and import.meta.filename

Mutative: efficient immutable updates, faster than Immer

github.com github.com/unadlib github.com/exuanbo

Same basic API as Immer.

Bun Shell: Bun’s built-in library for cross-platform shell scripting

bun.sh github.com/oven-sh

“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();

This email was sent to {{ email | default }}. You can unsubscribe from this list here or update your preferences.