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