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

Admin: @andrey2019
Download Telegram
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
Controlling When Components are Loaded in Nuxt

Explore how to optimize your Nuxt app’s performance by controlling when components load. Learn about lazy components, prefetching, and making components asynchronous to enhance user experience and reduce initial load times. - https://masteringnuxt.com/blog/controlling-when-components-are-loaded-in-nuxt

#vue
Feature-Based React Architecture

“In a feature-based architecture, each feature is decoupled from the others as much as possible. This way we can keep the components and their data fetching functions focused on their domain.” - https://www.robinwieruch.de/react-feature-architecture/

#react
May all your dreams come true in the New Year!
Create Your Own Cloudflare Workers AI LLM Playground Using NuxtHub and NuxtUI

Learn how to build your own AI LLM Playground using Cloudflare Workers, NuxtHub, and NuxtUI. This guide walks you through the process, offering a step-by-step tutorial for integrating these tools into your project - https://dev.to/ra_jeeves/create-your-own-cloudflare-workers-ai-llm-playground-using-nuxthub-and-nuxtui-3f1m

#vue
Building a Teleprompter App in 30 Minutes with AI

Building apps with AI powered tools isn’t that unusual nowadays, but if you’ve never seen the process, this is a good look at the process all the way through to deployment. He uses Vercel’s v0, Replit and Cursor. - https://www.youtube.com/watch?v=PbqYgK1xpms

#react
Avoiding False Positives in Node.js Tests

Specifically, avoiding loose/unstrict equality checks, overly general assertions, shallow equality, and misunderstandings over what assertions are doing. - https://blog.appsignal.com/2024/11/20/avoiding-false-positives-in-nodejs-tests.html

#nodejs