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

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.

Deno 1.40: Temporal API

deno.com github.com/bartlomieju github.com/crowlKats github.com/lambtron github.com/ry github.com/littledivy github.com/nayeemrmn @deno_land@fosstodon.org

Highlights:
  • Temporal API
  • import.meta.filename and import.meta.dirname
  • ECMAScript decorators
  • “We’re introducing a new unstable Deno.UnsafeWindowSurface API to address windowing in Deno. Our goal is to provide a windowing solution for WebGPU without linking to native windowing systems like X11.”

    “This is a low level API that can be used by FFI windowing libraries like sdl2, glfw, raylib, winit and more to create a WebGPU surface using native window and display handles.”

esbuild v0.20.0

github.com @evanw@hachyderm.io

Changes:
  • Backwards-incompatible change in Deno – if you use esbuild in tests, you need to switch:
    /* Old: */ esbuild.stop();
    /* New: */ await esbuild.stop();
  • Inside node_modules, esbuild has to pick a filename extension when it is omitted in an import:
    • Default order: .tsx .ts .jsx .js .css .json
    • Previous order in node_modules: .jsx .js .css .json .tsx .ts
    • New order in node_modules: .jsx .js .tsx .ts .css .json
    The reason for this change is explained in the release notes.

Explicit resource management: exploring JavaScript’s new feature

iliazeus.github.io @iliazeus@lor.sh

“One of my favorite new features of JavaScript [...] is explicit resource management. It brings new syntax, using foobar = ..., that enables RAII [resource acquisition is initialization], reducing boilerplate when managing the lifecycle of various resources.”

Example:
async function main() {
  await using connection = await connect();
  await doStuff(connection);
} // connection is closed

How to protect your projects from the risks of deprecated npm packages

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

“Deprecated npm packages are common in modern software projects. Learn about the risks of using unmaintained code, how to identify these packages, and evaluate alternatives.”

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