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

Администратор: @andrey2019
Download Telegram
An Interactive Guide to CSS Container Queries

Ahmad Shadeed shares an interactive guide to container queries, explaining the problems they solve, how they work, and how you can use them today in your workflows. - https://ishadeed.com/article/css-container-query-guide

#css
Why You Should Say Goodbye to Mixins and Embrace Composables

Vuejs 3 introduced composables as the new way to define logic that is shared and re-used among components. In this article, the author outlines the missing pieces offered composables as an excellent replacement for mixins. - https://levelup.gitconnected.com/why-you-should-say-goodbye-to-mixins-and-embrace-composables-9749d8fac9fc

#vue
Optimizing JavaScript for Fun and for Profit

A tour of several things to avoid to keep your code running fast and smooth, complete with examples. While the performance ground upon which we walk is often shifting, many of these things are good, common sense practices. - https://romgrk.com/posts/optimizing-javascript

#javascript
__dirname is Back in Node with ES Modules

In an ES module, instead of using __dirname or __filename, you can now use import.meta.dirname and import.meta.filename - https://www.sonarsource.com/blog/dirname-node-js-es-modules/

#nodejs
React Server Components in a Nutshell

A quick overview of RSCs that’s not focused around Next.js! Paul compares the approach taken by several frameworks before sharing his broader thoughts on the technology and why the small Waku framework is worth a look. - https://thenewstack.io/react-server-components-in-a-nutshell/

#react
Type Predicate Inference: The TS 5.5 Feature No One Expected

And another from Matt, who’s getting excited about the forthcoming inclusion of type predicate inference from function bodies in TypeScript 5.5. - https://www.totaltypescript.com/type-predicate-inference

#typescript
Vue Query vs. Pinia: A Clarity Comparison

This article will delve into the comparison between Vue Query and Pinia in Vue.js, focusing on clarity and why Vue Query might be a better choice for managing server state. - https://medium.com/@yah.emam/vue-query-vs-pinia-a-clarity-comparison-1002c8a5e7f5

#vue
Introducing Waku's “Pages Router”

Waku is an interesting minimal server-side React framework and it’s now also bringing a minimal API to the modern React server components era: “Making a Waku site is now as simple as making a few files and folders in the ./src/pages directory”.. - https://waku.gg/blog/introducing-pages-router

#react
Testing HTML With Modern CSS

Heydon Pickering shows how to use modern CSS selectors to find and expose bad markup. - https://heydonworks.com/article/testing-html-with-modern-css

#css