March 12, 2024

WorkOS, the modern API for auth and user identity.

workos.com Sponsor

WorkOS enables B2B SaaS companies to accelerate enterprise adoption with identity management and complex features like Single Sign-On, SCIM, and User Management. Built for developers tired of using legacy providers like Auth0, WorkOS delivers a unified platform with modern APIs and a predictable pricing model that will scale seamlessly with your enterprise motion.

Rolldown: Rust-based web bundler by team of Vite

rolldown.rs github.com/yyx990803 github.com/Brooooooklyn github.com/hyf0 github.com/underfin @vite@webtoo.ls

“Rolldown is a JavaScript bundler written in Rust intended to serve as the future bundler used in Vite. It provides Rollup-compatible APIs and plugin interface, but will be more similar to esbuild in scope.”

Work in Progress: Rolldown is currently in active development and not usable for production yet. but we are open sourcing it now so we can start collaborating with community contributors.”

Vite is currently using two bundlers: esbuild for development and Rollup for production. They are moving to a single bundler so that the output for development and production is consistent and to avoid duplicating bundler work.

Node v21.7.0 (Current): text styling, loading & parsing environment variables, and more

nodejs.org github.com/marco-ippolito github.com/RafaelGSS @nodejs@social.lfx.dev

Highlights:
  • Text styling:
    console.log(
      util.styleText('bold', util.styleText('red', 'Bold and red!')),
    ); 
    
  • Loading and parsing environment variables:
    • process.loadEnvFile(path)
    • util.parseEnv(content)
  • Support for multi-line values in .env files
  • Single executable applications: support for embedding assets

Biome v1.6: partial support for Astro/Svelte/Vue files, and more

biomejs.dev @ematipico@fosstodon.org @biomejs@fosstodon.org

Highlights:
  • Partial support for Astro, Svelte and Vue files
  • New configuration features: biome.jsonc, extends resolves dependencies
  • New formatting options: attributePosition, json.formatter.trailingCommas
  • biome migrate prettier: “This command will read your Prettier .prettierrc/prettier.json and .prettierignore, and attempt to port its options and globs in Biome.”
  • New linter rules

CISA announces initiative to fortify security of open source package registries

socket.dev @sarahgooding@fosstodon.org @SocketSecurity@fosstodon.org

“The Cybersecurity and Infrastructure Security Agency (CISA), the U.S.’ lead cyber defense agency, is collaborating with the open source ecosystem on new initiatives to secure the critical infrastructure that powers modern digital life.”

CISA recommends best practices such as multi-factor authentication, a way to report vulnerabilities, etc.

“Five of the most widely used package registries have agreed to take steps towards securing their operations, guided by this new ‘Principles for Package Repository Security’ framework.”

  • The Rust Foundation
  • The Python Software Foundation
  • Packagist and Composer
  • npm
  • Maven Central (maintained by Sonatype)

New JavaScript features in Safari 17.4: Promise.withResolvers(), Object.groupBy(), Map.groupBy()

webkit.org @jensimmons@front-end.social @jondavis@mastodon.social github.com/WebKit

With Safari joining the ranks, the following stage 4 features are now supported by virtually all browsers: Promise.withResolvers() looks like this:
const { promise, resolve, reject } = Promise.withResolvers();
Array grouping looks like this:
assert.deepEqual(
  Object.groupBy(['a', 1, 'b', true, 8], x => typeof x),
  {
    string: [ 'a', 'b' ],
    number: [ 1, 8 ],
    boolean: [ true ],
  }
);
assert.deepEqual(
  Map.groupBy(['a', 1, 'b', true, 8], x => typeof x),
  new Map([
    [ 'string', [ 'a', 'b' ] ],
    [ 'number', [ 1, 8 ] ],
    [ 'boolean', [ true ] ]
  ])
);

Using Intl.RelativeTimeFormat for localized relative timings

www.raymondcamden.com @raymondcamden@mastodon.social

What do you think of this issue?

If you have any comments or feedback, just reply to this email!

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