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

Admin: @andrey2019
Download Telegram
Maglev: A Serious Look at V8’s Fastest Optimizing JIT

A deep dive into how the V8 JavaScript engine (as used in Node) is getting faster thanks to work on its Maglev JIT compiler which sits in between the existing Sparkplug and TurboFan compilers - https://v8.dev/blog/maglev

#nodejs
Building Reusable Components that are ACTUALLY Reusable with Vue.js

When we talk or discuss about creating UI components in Vue.js, reusability is often brought up. In this article, explore the concept of reusable components, the problems faced when applying them, and why it is essential to overcome these problems. - https://medium.com/@tanbamrung.w/building-vue-js-components-that-are-actually-reusable-ca07b3701cb4

#vue
CSS animation-composition

Tyler Gaw shows how to use the CSS animation-composition property for advanced control over how values are applied during keyframe animations. - https://12daysofweb.dev/2023/animation-composition

#css
React Panel: Frontend Should Embrace React Server Components

A panel of developers from Meta, Vercel, Redwood, and others, discussed React server components and server actions in relation to the traditional SPA model and whether Next.js is the only path to adoption. - https://thenewstack.io/react-panel-frontend-should-embrace-react-server-components/

#react
Hand-shek with PouchDB & Vue3: Step-by-Step Guide

Are you considering building a web app that can work without an internet connection, using Vue.js? This blogpost will walk through the process of connecting Vue 3 with PouchDB — a powerful and user-friendly database that doesn’t need the internet to function. - https://medium.com/@khanusama20/hand-shek-with-pouchdb-vue3-step-by-step-guide-87b93e5c5f65

#vue
Vue v-if vs v-show: What's the Difference and Which One Should You Use?

Directives are vue-specific attributes for instructing Vue to operate on a DOM element. V-if and v-show are two vue directives with similar impacts on DOM elements. In this article, you will learn the differences between v-if and v-show and the appropriate scenario each applies. - https://drprime.hashnode.dev/vue-v-if-vs-v-show-whats-the-difference-and-which-one-should-you-use

#vue
You don't need JavaScript for that

Kilian Valkhof outlines one of the core principles of web development: you should choose the least powerful language suitable for a given purpose. - https://www.htmhell.dev/adventcalendar/2023/2

#css
Clean Frontend Architecture

Robert Maier-Silldorff introduces an example of clean Architecture, gives an overview of some principles that could be applied, and takes DDD and puts it into the Frontend Architecture. And last but not least, he presents some rules when it comes to creating components and adding business logic so that the code will hopefully stay maintainable. - https://blog.bitsrc.io/clean-frontend-architecture-2995c68702fb

#architecture
StyleX: Meta's Web Styling System

A newly open sourced “CSS-in-JS” library from Meta made up of a JavaScript syntax and compiler for styling web apps. It’s not exclusively for React, but React is a natural fit given it was built for Facebook. - https://stylexjs.com/blog/introducing-stylex/

#react