Turn on loading images 😉- Logo ECMAScript News

esm.sh: content delivery network for single ES modules built from npm packages or GitHub repositories

esm.sh @esm-dev

esm.sh is a modern CDN that allows you to import ECMAScript modules from URLs (specifying npm packages or GitHub repositories):
import Module from "https://esm.sh/PKG@SEMVER[/PATH]";
or build modules at runtime:
import { esm } from "https://esm.sh/build";

const mod = await esm`
  export const foo: string = "bar";
`;
console.log(mod.foo); // "bar"

🌟 What's Next for Developers in 2023! 🚀

developereconomics.net Sponsor

Share what you desire the most and shape the future of development - Participate in the exclusive Developer Nation survey and have your voice heard! We're calling on all developers and no-code software creators to join this initiative and share your invaluable insights. Is it improved documentation, a genuine DevOps culture, alternative tools, or novel technologies the top priorities for developers at present? Start right now and let your voice shape the future!

Do your part to secure the open source supply chain

github.com @feross @readme

[Quote:] The modern open source ecosystem offers software developers many benefits, from facilitating faster application development to providing difficult-to-develop functionality such as AI/ML. However, these benefits come with risks that require consideration. After all, when you include third-party code of any kind into your software, you’re accepting some level of unknown risk—and that’s where supply chain attacks come into play.

In this guide, you will learn:

  • What’s causing the increase in supply chain attacks

  • How to mitigate the effects of supply chain attacks

  • How to proactively address dependency security

esbuild 0.18.1

github.com @evanw

Highlights:
  • Support /* @__KEY__ */ comments for mangling property names
  • Support /* @__NO_SIDE_EFFECTS__ */ comments for functions

ESLint v8.43.0 released

eslint.org @mdjermanovic @eslint

  • The no-irregular-whitespace rule has a new option skipJSXText.
  • The ESLint documentation site now provides a “Custom Rule Tutorial” with step-by-step instructions on how to create and use a custom rule.

New JavaScript features in Firefox 115

spidermonkey.dev @mozilla-spidermonkey

Highlights:

test262.fyi: daily runner of test262 for many engines

github.com @CanadaHonk

Independent daily Test262 (standard test suite) runner for many JS engines (test262.report spiritual successor). Work in progress.

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