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

Admin: @andrey2019
Download Telegram
linear() Generator

An online generator that will help you convert JavaScript/SVG easing definitions into linear() CSS format. - https://linear-easing-generator.netlify.app/

#tools
Exploring Nuxt 3 Middleware: A Comprehensive Overview

Nuxt.js Middlewares are custom functions run before rendering a page or group of pages. Checking authentication, modifying the server response, or accessing cookies are some of the most common usages of middleware. This article helps you understand the different types of middleware and how they work in Nuxt 3 - https://figueiredoluiz.medium.com/exploring-nuxt-3-middlewares-a-comprehensive-overview-6c45635cd6e4

#vue
Responsive type scales with composable CSS utilities

Tobias Ahlin Bjerrome explains how you can create composable, responsive, and fluid-type scales that smoothly adapt to viewport and container widths using calc(), clamp(), and CSS vars. - https://tobiasahlin.com/blog/responsive-fluid-css-type-scales

#css
Create API with Nuxt 3

Nuxt 3 provides the Nitro server where we can write our server-side code. Nitro uses unjs/h3 internally to create server and handle routes. In this article, you will find out how to create an API with the help of Nitro server engine and h3 route handlers. - https://medium.com/@shahriarrahi/create-api-with-nuxt3-adcb7b6a17dd

#vue
How We Tamed Node.js Event Loop Lag: A Deepdive

Node famously uses very few threads yet can handle a large number of clients performantly, as long as the work associated with each client is ‘small.’ When you get nested loops, as in this story, however, things can go off the rails quickly. Node’s Don’t Block the Event Loop is a great further guide to this topic. - https://trigger.dev/blog/event-loop-lag

#nodejs
Why Nuxt makes your Vue life better

Vue.js offers so many amazing capabilities for building web application. But did you know that with Nuxt you could have an even better experience of building Vue.js web application. In this article, find out how. - https://vuejsdevelopers.com/2024/04/10/why-nuxt-makes-your-vue-life-better/

#vue
Profiling Node.js Applications

If you’re dealing with unusual performance issues, profiling your app can determine where the issues are arising. This tutorial offers a sample project to work on and covers profiling in a handful of different ways. - https://betterstack.com/community/guides/scaling-nodejs/profiling-nodejs-applications/

#nodejs
Naming Variables In CSS

Jonathan Dallas shares some thoughts related to naming CSS Custom Properties. - https://jwdallas.com/posts/nesteddarkmode/

#css
How to Perform Data Validation in Node

Explores data validation in the Node backend, and shows us how to implement it in Express using the express-validator library. - https://blog.appsignal.com/2024/06/19/how-to-perform-data-validation-in-nodejs.html

#nodejs