uk
Feedback
JavaScript

JavaScript

Відкрити в Telegram

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

Показати більше

📈 Аналітичний огляд Telegram-каналу JavaScript

Канал JavaScript (@javascript) у мовному сегменті Англійська є активним учасником. На даний момент спільнота об'єднує 31 450 підписників, посідаючи 4 377 місце в категорії Технології та додатки та 13 573 місце у регіоні Індія.

📊 Показники аудиторії та динаміка

З моменту свого створення невідомо, проект продемонстрував стрімке зростання, зібравши аудиторію у 31 450 підписників.

За останніми даними від 11 червня, 2026, канал демонструє стабільну активність. Хоча за останні 30 днів спостерігається зміна кількості учасників на -198, а за останні 24 години на 17, загальне охоплення залишається високим.

  • Статус верифікації: Не верифікований
  • Рівень залученості (ER): Середній показник залученості аудиторії становить 6.20%. Протягом перших 24 годин після публікації контент зазвичай збирає 2.53% реакцій від загальної кількості підписників.
  • Охоплення публікацій: В середньому кожен допис отримує 1 949 переглядів. Протягом першої доби публікація в середньому набирає 797 переглядів.
  • Реакції та взаємодія: Аудиторія активно підтримує контент: середня кількість реакцій на один пост – 7.
  • Тематичні інтереси: Контент зосереджений навколо ключових тем, таких як javascript, console.log(gen.next().value, processdata, remix, acc.

📝 Опис та контентна політика

Автор описує ресурс як майданчик для висловлення суб'єктивної думки:
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

Завдяки високій частоті оновлень (останні дані отримано 12 червня, 2026), канал підтримує актуальність та високий рівень охоплення публікацій. Аналітика показує, що аудиторія активно взаємодіє з контентом, що робить його важливою точкою впливу в категорії Технології та додатки.

31 450
Підписники
+1724 години
-587 днів
-19830 день
Архів дописів
What is the output?
Anonymous voting

CHALLENGE

const flags = {
  READ:    0b0001,
  WRITE:   0b0010,
  EXECUTE: 0b0100,
  DELETE:  0b1000,
};

const userPermissions  = flags.READ | flags.WRITE | flags.EXECUTE;
const adminPermissions = userPermissions | flags.DELETE;

const canDelete  = (adminPermissions & flags.DELETE)  !== 0;
const canExecute = (userPermissions  & flags.EXECUTE) !== 0;
const readOnly   = userPermissions   ^ flags.WRITE;

console.log(canDelete, canExecute, readOnly, adminPermissions >> 1);

😱 Bun's Zig-to-Rust porting saga continues, but what about Node...? The Rust-based rewrite of Bun has been merged, though th
😱 Bun's Zig-to-Rust porting saga continues, but what about Node...? The Rust-based rewrite of Bun has been merged, though there are questions over the quality of the AI-ported code. Matteo Collina and Luca Maraschi got together to 😉 discuss the story and speculate whether Node could follow...

What is the output?
Anonymous voting

CHALLENGE

const config = {
  db: { host: "localhost", port: 5432 },
  cache: { ttl: 300 },
};

Object.freeze(config);

config.debug = true;
config.db.port = 9999;
config.cache = { ttl: 600 };

const sealed = Object.seal({ version: "1.0", meta: { build: 42 } });

sealed.version = "2.0";
sealed.author = "devteam";
sealed.meta.build = 99;

console.log(
  config.debug,
  config.db.port,
  config.cache.ttl,
  sealed.version,
  sealed.author,
  sealed.meta.build
);

🤟 An Official Codemod to Migrate from Axios to fetch A codemod (used via npx codemod) that transforms code using Axios to le
🤟 An Official Codemod to Migrate from Axios to fetch A codemod (used via npx codemod) that transforms code using Axios to leverage the WHATWG Fetch API, which is now natively available in Node.js. For some reason they don’t link to it in the post, but it’s here if you want to try it out (and here’s the underlying code). Augustin Mauroy

What is the output?
Anonymous voting

CHALLENGE
const prefix = "get";
const suffix = "Name";

const registry = {
  [`${prefix}Full${suffix}`]: function () {
    return `${this.first} ${this.last}`;
  },
  [`${prefix}Short${suffix}`]: function () {
    return this.first[0] + ". " + this.last;
  },
};

const person = {
  first: "Leonardo",
  last: "Fibonacci",
  ...registry,
};

const key = ["Full", "Short"][1];
console.log(person[`${prefix}${key}${suffix}`]());

🤟 A Fresh Chapter and New Look for Express For a while, Node’s long-standing web framework, Express.js, was looking a bit st
🤟 A Fresh Chapter and New Look for Express For a while, Node’s long-standing web framework, Express.js, was looking a bit stale and projects like Fastify were beginning to carry the torch, but a major reboot that began in 2024 brought Express back to the fore. Now Express’s brand, website, and docs have time-travelled to 2026 too. Sebastian Beltran

What is the output?
Anonymous voting

CHALLENGE

const tag = (strings, ...values) => {
  return strings.reduce((result, str, i) => {
    const value = values[i - 1];
    const transformed =
      typeof value === "number" ? `[${value ** 2}]` : `{${value}}`;
    return result + transformed + str;
  });
};

const name = "Sofia";
const score = 4;
const level = "gold";

const output = tag`Player: ${name}, Score: ${score}, Rank: ${level}`;
console.log(output);

✌️ Andrea Giammarchi proposes JSONRegistry (above), an alternative to JSON that lets you define a registry for serializing an
✌️ Andrea Giammarchi proposes JSONRegistry (above), an alternative to JSON that lets you define a registry for serializing and reviving custom/branded types.

What is the output?
Anonymous voting

CHALLENGE
const delay = (ms, val) => new Promise(res => setTimeout(res, ms, val));

async function* asyncGen() {
  yield await delay(10, "alpha");
  yield await delay(10, "beta");
  yield await delay(10, "gamma");
}

async function run() {
  const results = [];

  const gen = asyncGen();
  const [first, , third] = await Promise.all([
    gen.next(),
    gen.next(),
    gen.next()
  ]);

  results.push(first.value, third.value);

  const p1 = Promise.resolve("x").then(v => v + "1");
  const p2 = Promise.reject("err").catch(e => e + "2");

  results.push(...(await Promise.all([p1, p2])));
  console.log(results);
}

run();

👀 Orval: Generate Type-Safe Clients from OpenAPI/Swagger Specs Given a valid OpenAPI v3 or Swagger v2 spec, generate models,
👀 Orval: Generate Type-Safe Clients from OpenAPI/Swagger Specs Given a valid OpenAPI v3 or Swagger v2 spec, generate models, requests, hooks, and mocks for React, Vue, Svelte, Solid, and Hono apps, or even plain fetch. Victor Bury

What is the output?
Anonymous voting

CHALLENGE

const str = "JavaScript is Awesome!";

const result = str
  .split(" ")
  .map((word, i) => 
    i % 2 === 0
      ? word.toUpperCase()
      : word.toLowerCase()
  )
  .join("-");

const reversed = result
  .split("")
  .reduce((acc, char) => char + acc, "");

console.log(reversed);

🤖 Mark Erikson's Agent Setup, Workflow, and Tools Mark, well known for maintaining Redux and creating Redux Toolkit, goes de
🤖 Mark Erikson's Agent Setup, Workflow, and Tools Mark, well known for maintaining Redux and creating Redux Toolkit, goes deep into his daily development workflow, including his use of OpenCode (an open source JavaScript-powered coding agent), how he manages his knowledge base, tasks, and more. Mark Erikson

What is the output?
Anonymous voting

CHALLENGE

const createModule = (() => {
  const privateCache = new WeakMap();

  return function(name) {
    const state = { name, version: 1, active: true };
    privateCache.set(state, { accessCount: 0 });

    return {
      getInfo() {
        const meta = privateCache.get(state);
        meta.accessCount++;
        return `${state.name}@v${state.version}`;
      },
      getAccessCount() {
        return privateCache.get(state).accessCount;
      },
      upgrade() {
        state.version++;
        return this;
      }
    };
  };
})();

const mod = createModule("auth");
mod.upgrade().upgrade();
console.log(mod.getInfo());
console.log(mod.getAccessCount());