Deno 1.26 Release Notes
deno.com
@billywhizz1970,
@biwanczuk,
@cjihrig,
@davidsherret,
@undefined_void,
@kitsonk,
@satyarohith_,
@deno_land
Some of the highlights:
- Improvements to npm support
- Node.js compatibility improvements
I turned JS into a compiled language (for fun and Wasm)
surma.dev
@DasSurma
Surma: “I wanted to run JavaScript in WebAssembly, so I decided to turn JavaScript into a compiled language by building a JS-to-C++ transpiler.”
How to write CommonJS exports that can be name-imported from ESM
2ality.com
@2ality
// Can be name-imported from ESM
exports.namedExport = 'yes';
// Cannot be name-imported from ESM
module.exports = {
namedExport: 'yes',
};
|