@javascript

JavaScript
Channel ID: 4482
31,600
subscribers
Avg Views
1,214
per post
Growth Rate
N/A
Engagement
0.0%
Fake Score
0/100

About

A resourceful newsletter featuring the latest and most important news, articles, books and updates in the world of #javascript πŸš€ Don't miss our Quizzes! Let's chat: @nairihar

Latest Posts

⛽️ RFC: It’s Time for npm to Make Install Scripts Opt-In npm is the only major package manager that runs dependency install scripts (e.g. postinstall) by default, and they’ve become too much of a secu...
0 views
0 views
0 views
0 views
πŸ‘€ Remix 3 Enters Beta β€” It's No Longer a React Framework Remix has quite the back story. Created by the duo behind React Router in 2020 and seen as an alternative to Next.js, Remix was acquired by...
0 views
πŸ‘€ Anime.js 4.4: The Flexible JavaScript Animation Engine At ten years old, the β€˜animate anything from JavaScript’ library continues to get even better with a new scrambleText effect and auto-grid layo...
0 views
πŸ€” How can you not love a project homepage where you're a cat in a convertible driving through an endless barrage of obstacles? Crashcat is a JavaScript 3D rigid body physics library built for game...
0 views
🌲 NodeBook: An Advanced Guide to Node.js Internals Volume I of this in-depth guide is now complete with eight chapters of advanced material covering topics like event loop internals, what V8 does, buf...
0 views
🌟 Bun v1.3.14 Adds Image Processing, HTTP/3, HTTP/2 Fetch and More Another mammoth Bun release. Bun.Image is a new built-in image processing API which can replace Sharp in many cases. Bun’s package ma...
0 views
0 views
0 views
⚠️ Link to the X's post πŸ’‘ This is how you can check if your secrets are leaked: via Gitleaks Github
0 views
0 views
0 views
0 views
0 views
0 views
CHALLENGE class EventEmitter { #listeners = new Map(); on(event, listener) { if (!this.#listeners.has(event)) { this.#listeners.set(event, []); } this.#listeners.get(event).push(listener); return ...
737 views
05-20 14:32
CHALLENGE const p1 = new Promise((resolve) => { console.log("A"); resolve("B"); }); const p2 = p1.then((val) => { console.log(val); return "C"; }); p2.then((val) =&...
982 views
05-19 14:32
CHALLENGE class Range { constructor(start, end, step = 1) { this.start = start; this.end = end; this.step = step; } [Symbol.iterator]() { let current = this.start; const { end, step } = this; return {...
1,130 views
05-18 14:30