FrontEnd Development
28.9K subscribers
145 photos
1 video
9.35K links
Полезные ссылки иHTML, CSS, JavaScript, TypeScript, Angular, React, Vue, Node.js, Mobile and more.
Download Telegram
Form Validation In Svelte

Forms continue to be a crucial component of web user interaction. When dealing with forms, we have to monitor user input, verify and report errors, and manage form submissions. Validating form input is essential to development, ensuring we receive only the required information from the form. - https://blog.openreplay.com/form-validation-in-svelte/

#svelte
👍31
Migrating from Vue 2 To Vue 3 – Deprecated and Updated Features

Migrating from Vue.js 2 to Vue.js 3 is not always straightforward, and developers need to be aware of certain changes and potential issues that may arise during the process. This article will discuss some of the key features from Vue 2 that have either been deprecated or updated in the release of Vue 3. - https://vueschool.io/articles/vuejs-tutorials/migrating-from-vue-2-to-vue-3-deprecated-and-updated-features/

#vue
👍8
Dan Abramov Rebuilds React Server Components from Scratch

Having faced a raft of questions about Server Components, Dan has begun to write a series covering everything from the ground up by reimplementing a basic form of RSC from scratch. It’s not aimed at day-to-day React developers, but those who want to grok the ideas behind RSCs. - https://github.com/reactwg/server-components/discussions/5

#react
7👍2
A Practical Guide to Not Blocking the Event Loop

Typically, JavaScript engines run JavaScript in a single thread with an event loop. However, the nature of mixing synchronous and asynchronous tasks, along with the increasing popularity of workers for running code on separate threads, makes the landscape harder to navigate than it used to be. - https://www.bbss.dev/posts/eventloop/

#nodejs
👍6😁1🤯1
Data Fetching Basics

Nuxt offers a set of powerful built-in tools for handling data fetching. This article examines the different methods Nuxt provides us for data fetching. - https://masteringnuxt.com/blog/data-fetching-basics

#vue
👍4
Angular with Vite is crazy fast

Hello, I love Angular and I have worked from AngularJS to Angular 15 now. I always wonder how fast I can work… - https://medium.com/@hiepxanh/angular-vite-example-is-crazy-fast-3ee4d730020c

#angular
👍5
Server-Sent Events with Node

Server-Sent Events (SSE) enable a web server to send real-time updates to the client but without the two-way connection overhead of WebSockets. - https://blog.endpts.io/server-sent-events-with-nodejs

#nodejs
👍3
React Tweet: Vercel's New Way to Embed Tweets in a React App

Are they even called “tweets” anymore? Nonetheless, Vercel has come up with an elegant way to embed posts from the site formerly known as Twitter that is faster and smaller than the official embed and supports RSCs and ‘any React framework.’ Now we just have to pray that Elon doesn’t turn off the taps. - https://vercel.com/blog/introducing-react-tweet

#react
👍6
Refactor Your Vue Application By Using Setup Scripts

script setup is a compile-time syntactic sugar for using Composition API inside Single-File Components (SFCs). It is the recommended syntax for using both SFCs and Composition API. This article provides a guide to enhance your Vue3 Application using script setup. - https://itnext.io/refactor-your-vue-application-by-using-setup-scripts-f4d68853d75e

#vue
👍2