FrontEnd Development
30.3K subscribers
145 photos
1 video
9.03K links
Полезные ссылки иHTML, CSS, JavaScript, TypeScript, Angular, React, Vue, Node.js, Mobile and more.

Admin: @andrey2019
Download Telegram
My new favorite way to build apps…

NuxtHub is a new way to deploy your Nuxt apps built by NuxtLabs. This video provides an introduction to NuxtHub and what it offers to building Nuxt applications - https://www.youtube.com/watch?v=hlmPqDkc3_s

#vue
What’s New for JavaScript Developers in ECMAScript 2024

High level analysis of developments in the ECMAScript spec, with insights from Ecma vice president Daniel Ehrenberg, TC39 co-chair Rob Palmer, and developer Ashley Claymore. A good, thorough roundup of the state of play. - https://thenewstack.io/whats-new-for-javascript-developers-in-ecmascript-2024/

#javascript
Patterns for Memory Efficient DOM Manipulation

Marc shares a solid look at the best practices to employ in order to avoid excess memory usage when managing/updating the DOM, all with a hope to make your apps faster. A good overview of the core principles behind DOM manipulation and optimization. - https://frontendmasters.com/blog/patterns-for-memory-efficient-dom-manipulation/

#javascript
Reverse Engineering Minified JavaScript with ChatGPT

Writing new code with AI is one thing, but could it be even better at understanding existing code that you’re struggling to grok? Yes, it seems. - https://glama.ai/blog/2024-08-29-reverse-engineering-minified-code-using-openai

#javascript
Don't Sleep on AbortController

AbortController is a broadly available mechanism for, originally, aborting Web requests on demand, but you can use it for a lot more than that  - https://kettanaito.com/blog/dont-sleep-on-abort-controller

#javascript
Exploring JavaScript Symbols

Symbols were a new ‘quirky little primitive’ (as Trevor puts it) that arrived with ES6 ten years ago, but they continue to be poorly understood. Trevor boils them down really well, including a little side quest into the likely-to-be-deprecated ‘species.’ - https://www.trevorlasn.com/blog/symbols-in-javascript

#javascript
Using Transformers.js for AI in the Browser

Transformers.js is a seriously impressive project we link from time to time that lets you run pretrained machine learning models in the browser. Here’s a practical look at actually playing with it yourself right now. - https://www.raymondcamden.com/2024/12/03/using-transformersjs-for-ai-in-the-browser

#javascript
Working with JavaScript's Scheduler API

A look at an API only available in Chromium/Edge for now, but that promises a way to prioritize and control task execution in a more refined way than was possible till now. - https://www.trevorlasn.com/blog/javascript-scheduler-api

#javascript
JavaScript Temporal is Coming

We first mentioned the Temporal API proposal providing a better way to handle dates and times in JavaScript almost five years ago (in issue 496!) but now it really is almost here. Brian explains its basic concepts and where initial support is starting to appear. -  https://developer.mozilla.org/en-US/blog/javascript-temporal-is-coming/

#javascript
Converting Values to Strings in JavaScript

When Dr. Axel says “converting values to strings in JavaScript is more complicated than it might seem”, I’m going to believe him. An interesting poke around into something simple that you might not think about very much. - https://2ality.com/2025/04/stringification-javascript.html

#javascript
Standard Schema: A Common Interface to Schema / Validation Libraries

From the creators of Zod, Valibot and ArkType comes a fantastic bit of collaboration to define a common interface to use JavaScript and TypeScript schema libraries. - https://standardschema.dev/

#javascript
Introducing Mentoss: The fetch Mocker

A new approach to mocking global fetch() calls (in both browsers and server-side runtimes) inspired by previous attempts like Nock and MSW. - https://humanwhocodes.com/blog/2025/01/introducing-mentoss-fetch-mocker/

#javascript
There Are a Lot of Ways to Break Up Long Tasks in JavaScript

Due to how browsers and the event loop work, letting a single task hog the main thread is a quick way to freeze up your site’s UI. Alex explains the problem and uses a simple example to walk through the pros and cons of different solutions from basic use of setTimeout() to requestAnimationFrame(), channel messaging, and Web Workers. - https://macarthur.me/posts/long-tasks/

#javascript