Clean Frontend Architecture: Tips to Success
This article provides some more advanced tips on how to achieve a Clean Frontend Architecture. - https://blog.stackademic.com/clean-frontend-architecture-tips-to-success-db0b159b7b38
#architecture
This article provides some more advanced tips on how to achieve a Clean Frontend Architecture. - https://blog.stackademic.com/clean-frontend-architecture-tips-to-success-db0b159b7b38
#architecture
Medium
Clean Frontend Architecture: Tips to Success
In one of my previous blog posts I have talked about the importance of Frontend Architecture, some principles around this topic and I have…
Textareas with auto-increasing height using CSS
Amit Merchant gives a short intro to an experimental CSS rule with form-sizing property that will let you increase the height of the textarea automatically based on the amount of text the user enters. - https://www.amitmerchant.com/textarea-auto-increase-height
#css
Amit Merchant gives a short intro to an experimental CSS rule with form-sizing property that will let you increase the height of the textarea automatically based on the amount of text the user enters. - https://www.amitmerchant.com/textarea-auto-increase-height
#css
Amit Merchant - A blog on PHP, JavaScript, and more
Textareas with auto-increasing height using CSS
Textareas areas are great when it comes to accepting a large amount of text from the user. But, the problem with textareas is that they have a fixed height. So, if the user enters more text than the height of the text, the text will overflow and the user…
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
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
Why Nuxt makes your Vue life better
Nuxt is a supercharged framework built on top of Vue.js. In this article let's explore some features about Nuxt that will make your experience with building Vue.js application much better.
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
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
Betterstack
Profiling Node.js Applications | Better Stack Community
This article walks you through various tools and techniques on how to profile a Node.js application to identify high CPU usage sources
Guidelines for creating performant Angular applications and their efficient…
Everything you need in one article! - https://medium.com/@patrik.horva90/guidelines-for-creating-performant-angular-applications-and-their-efficient-maintenance-6c7537bd56cf
#angular
Everything you need in one article! - https://medium.com/@patrik.horva90/guidelines-for-creating-performant-angular-applications-and-their-efficient-maintenance-6c7537bd56cf
#angular
Medium
Guidelines for creating performant Angular applications and their efficient maintenance
Everything you need in one article!
Naming Variables In CSS
Jonathan Dallas shares some thoughts related to naming CSS Custom Properties. - https://jwdallas.com/posts/nesteddarkmode/
#css
Jonathan Dallas shares some thoughts related to naming CSS Custom Properties. - https://jwdallas.com/posts/nesteddarkmode/
#css
Jwdallas
Nested Dark Mode Via CSS Proximity
How to arbitrarily nest themes to any depth
Extra Arguments for Server Actions in React Forms - https://www.robinwieruch.de/react-form-server-action-extra-arguments/
#react
#react
www.robinwieruch.de
Extra Arguments for Server Actions in React Forms
Learn how to pass extra arguments to server actions in React forms (or Next.js forms) using hidden form fields or binding the arguments to the server action ...
Best Practices for Vue Developers in 2024
This article provides some of the best practices developers should adopt when utilizing Vue. - https://medium.com/mesciusinc/best-practices-for-vue-developers-in-2024-dc2aab109578
#vue
This article provides some of the best practices developers should adopt when utilizing Vue. - https://medium.com/mesciusinc/best-practices-for-vue-developers-in-2024-dc2aab109578
#vue
Medium
Best Practices for Vue Developers in 2024
If you want to put the importance for developers to keep up with the best practices for JavaScript, consider this. The number of websites…
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
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
Appsignal
How to Perform Data Validation in Node.js | AppSignal Blog
We'll see how data validation works in Node before implementing it in Express.
Creating and styling components in Angular correctly
A few simple examples to help you avoid over-complex code, redundant component styles, and non-obvious traps
- https://blog.stackademic.com/creating-and-styling-components-in-angular-correctly-52c93b062759
#angular
A few simple examples to help you avoid over-complex code, redundant component styles, and non-obvious traps
- https://blog.stackademic.com/creating-and-styling-components-in-angular-correctly-52c93b062759
#angular
Medium
Creating and styling components in Angular correctly
A few simple examples to help you avoid over-complex code, redundant component styles, and non-obvious traps
Sneaky React Memory Leaks: How the React Compiler Won’t Save You
Closures can lead to memory leaks in React and while the new and exciting React Compiler can tackle a lot of issues and make most codebases more performant, it pays to be aware of the tricky edge cases - https://schiener.io/2024-07-07/react-closures-compiler
#react
Closures can lead to memory leaks in React and while the new and exciting React Compiler can tackle a lot of issues and make most codebases more performant, it pays to be aware of the tricky edge cases - https://schiener.io/2024-07-07/react-closures-compiler
#react
www.schiener.io
Sneaky React Memory Leaks: How the React compiler won't save you
Learn how the React compiler handles closures, memoization with `useCallback`, and related memory leaks. We will dive into the details and see why the compiler relies on pure components and how you can still run into closure-related memory troubles.
Fixing Nuxt Hydration Mismatches in the Real World
This article explores the problem hydration mismatches in Nuxt applications. It discusses what hydration mismatches are and why they are a problem and also provides some techniques to solving them - https://ryanclements.dev/posts/fixing-nuxt-hydration-mismatches-in-the-real-world
#vue
This article explores the problem hydration mismatches in Nuxt applications. It discusses what hydration mismatches are and why they are a problem and also provides some techniques to solving them - https://ryanclements.dev/posts/fixing-nuxt-hydration-mismatches-in-the-real-world
#vue
ryanclements.dev
Fixing Nuxt Hydration Mismatches in the Real World
Struggling with hydration mismatches in your Nuxt.js app? Dive into real-world examples and solutions in our latest blog post. Learn why hydration mismatches occur, how they impact your app, and practical tips for fixing them.
Designing an Idempotent API in 2024
How To Design an Idempotent API Correctly? - https://blog.bitsrc.io/design-an-idempotent-api-in-2024-d4a3cf8d8bf2
#api
How To Design an Idempotent API Correctly? - https://blog.bitsrc.io/design-an-idempotent-api-in-2024-d4a3cf8d8bf2
#api
Medium
Designing an Idempotent API in 2024
How To Design an Idempotent API Correctly?
5 CSS snippets every front-end developer should know in 2024 - https://web.dev/articles/5-css-snippets-every-front-end-developer-should-know-in-2024
#css
#css
web.dev
5 CSS snippets every front-end developer should know in 2024 | Articles | web.dev
Toolbelt worthy, powerful, and stable CSS you can use today.
Deploying AWS Lambda Functions with Serverless Framework and Node.js - https://implementing.substack.com/p/deploy-aws-lambda-functions-with-serverless-node
#nodejs
#nodejs
Substack
Deploy AWS Lambda functions with Serverless Framework and Node.js
Deploy test lambda - Edition #29
Mastering Prose Components in Nuxt Content
Prose components are perhaps one of the best features of Nuxt Content! This article provides an overview on prose components, exploring their use cases and a bunch of different things you can do with them. - https://masteringnuxt.com/blog/mastering-prose-components-in-nuxt-content
#vue
Prose components are perhaps one of the best features of Nuxt Content! This article provides an overview on prose components, exploring their use cases and a bunch of different things you can do with them. - https://masteringnuxt.com/blog/mastering-prose-components-in-nuxt-content
#vue
Masteringnuxt
Mastering Prose Components in Nuxt Content
Prose components are perhaps one of the best features of Nuxt Content! This article provides an overview on prose components, exploring their use cases and a bunch of different things you can do with them.
React 19's use Hook Can Impact App Performance
The new use() hook in React 19 looks great. However, there are some potential issues which require some exploration and explanation, says Jack. - https://www.youtube.com/watch?v=t6MeFVF3V9I
#react
The new use() hook in React 19 looks great. However, there are some potential issues which require some exploration and explanation, says Jack. - https://www.youtube.com/watch?v=t6MeFVF3V9I
#react
YouTube
Warning: React 19's use Hook Can Impact App Performance
React 19 and the NextJS App Router have the use hook, and it's great. We can now await promises in client components. But there are some gotchas with it that we need to explore.
Code: https://arc.net/l/quote/eokiyxsr
👉 Upcoming NextJS course: https://pronextjs.dev…
Code: https://arc.net/l/quote/eokiyxsr
👉 Upcoming NextJS course: https://pronextjs.dev…
Building a Clean and Scalable Frontend Architecture
As the digital landscape continues to evolve, the importance of frontend architecture for web applications… - https://awstip.com/title-building-a-clean-and-scalable-frontend-architecture-f4fe1f814f68
#architecture #frontend
As the digital landscape continues to evolve, the importance of frontend architecture for web applications… - https://awstip.com/title-building-a-clean-and-scalable-frontend-architecture-f4fe1f814f68
#architecture #frontend
Medium
Building a Clean and Scalable Frontend Architecture
Digital and technological development continues unstoppable, so, if we talk about the design of web applications, we cannot lose sight of…