FrontEnd Development
28.3K subscribers
144 photos
1 video
8.36K links
Полезные ссылки иHTML, CSS, JavaScript, TypeScript, Angular, React, Vue, Node.js, Mobile и многое другое.

Администратор: @andrey2019
Download Telegram
A Comprehensive Guide to Node.js Addons

If you’d rather stick with Node than use Bun’s newest feature to bring C/C++ etc. into JavaScript, writing your own addon remains a dependable approach. - https://mertcan.vercel.app/comprehensive-guide-to-nodejs-addons

#nodejs
Building Standalone Executables with Node.js

While the developer experience isn’t quite as nice as with Deno or Bun yet, Node does have experimental support for building single executables of apps that you can distribute to systems which don’t have Node installed. - https://codesnip.sh/posts/building-standalone-nodejs-executables

#nodejs
How Bun Supports V8 APIs Without Using V8

Bun uses the JavaScriptCore engine, not V8, yet it can support Node addons that rely upon V8’s APIs. Here’s how it works under the hood. - https://bun.sh/blog/how-bun-supports-v8-apis-without-using-v8-part-1

#nodejs
Inquirer.js 12.0: A Collection of Common Interactive CLI Controls

Want to ask your users questions? Select from predefined options? Enter a password? Check boxes? (Maybe you want to make sure they’re not affiliated with WP Engine or something ridiculous like that.) Well, then, this is for you. - https://github.com/SBoudrias/Inquirer.js

#cli #nodejs
Node v23.0.0 (Current) Released

Say hello to the newest release line of Node.js that gets all the cutting edge features first (Node 22 will soon become the active LTS release). v23 notably enables support for loading ES modules with require() by default, drops 32-bit Windows support, and node --run goes stable. - https://nodejs.org/en/blog/release/v23.0.0

#nodejs
How Top-Level await Could Break Compatibility

Node 23 makes it possible to load ES modules transparently with require which is great, but.. only if the module being loaded isn’t using top-level await. One for package creators to think carefully about before backwards compatibility issues creep in! - https://evertpot.com/using-top-level-await-is-bc-break/

#nodejs
The Story of the Hono Web Framework

Hono is a lightweight framework designed to run on any JavaScript runtime that's been picking up steam in the past year. With it, you can create an app in a Express-like style but run it on Cloudflare Workers, Deno, Bun, or Node. - https://blog.cloudflare.com/the-story-of-web-framework-hono-from-the-creator-of-hono/

#nodejs
Introducing Express v5: The Official Express v5 Release Post

We first spied the release of Express.js v5 over a month ago but now we get an official release post that tidies up a lot of loose ends and explains the broad plan. For now, v5 is considered a bleeding edge release with work still required in areas of security and overall process, but things are broadly progressing well. - https://expressjs.com/2024/10/15/v5-release.html

#nodejs
How Top-Level await Could Break Compatibility

Node 23 makes it possible to load ES modules transparently with require which is great, but.. only if the module being loaded isn’t using top-level await. One for package creators to think carefully about before backwards compatibility issues creep in! - https://evertpot.com/using-top-level-await-is-bc-break/

#nodejs