Server-Side Rendering (SSR) with Bun and React
Bun 1.0, a performance oriented alternative server-side JS runtime, has finally been released. To better understand how it can be employed with React, this case study walks through an example. - https://alexkates.dev/server-side-rendering-ssr-with-bun-and-react
#react #ssr
Bun 1.0, a performance oriented alternative server-side JS runtime, has finally been released. To better understand how it can be employed with React, this case study walks through an example. - https://alexkates.dev/server-side-rendering-ssr-with-bun-and-react
#react #ssr
👍7🔥3
Type vs Interface: Which Should You Use in 2023?
Learn the key differences between interfaces and type aliases in TypeScript, including their use cases and important features to consider. - https://www.totaltypescript.com/type-vs-interface-which-should-you-use
#typescript
Learn the key differences between interfaces and type aliases in TypeScript, including their use cases and important features to consider. - https://www.totaltypescript.com/type-vs-interface-which-should-you-use
#typescript
Total TypeScript
Type vs Interface: Which Should You Use?
Learn the key differences between interfaces and type aliases in TypeScript, including their use cases and important features to consider.
👍5🔥2
Exploring Nuxt 3 Middleware: A Comprehensive Overview
In Nuxt.js, middleware are custom functions that run before rendering a page or group of pages. Its use-cases may include checking authentication, modifying the server response, or accessing cookies. In this article understand the various types of middleware and how they work in Nuxt 3. - https://figueiredoluiz.medium.com/exploring-nuxt-3-middlewares-a-comprehensive-overview-6c45635cd6e4
#vue
In Nuxt.js, middleware are custom functions that run before rendering a page or group of pages. Its use-cases may include checking authentication, modifying the server response, or accessing cookies. In this article understand the various types of middleware and how they work in Nuxt 3. - https://figueiredoluiz.medium.com/exploring-nuxt-3-middlewares-a-comprehensive-overview-6c45635cd6e4
#vue
Medium
Exploring Nuxt 3 Middlewares: A Comprehensive Overview
Understand the Different Types of Middlewares and How They Work in Nuxt 3
👍5❤1🔥1
A Comprehensive Guide to Angular Observables - https://medium.com/@lquocnam/a-comprehensive-guide-to-angular-observables-bde5542346fc
#angular
#angular
Medium
A Comprehensive Guide to Angular Observables
Introduction
👍5🔥1
Best Practices for Securing Node Apps in Production
A list of fifteen straightforward and fundamental best practices for keeping your apps safe(r). - https://semaphoreci.com/blog/securing-nodejs
#nodejs
A list of fifteen straightforward and fundamental best practices for keeping your apps safe(r). - https://semaphoreci.com/blog/securing-nodejs
#nodejs
Semaphore
Best Practices for Securing Node.js Applications in Production - Semaphore
This article discusses the increasing importance of securing Node.js due to rising online attacks, offering 15 best practices.
👍6
Laying out dots on a dice using display:flex & pseudo-classes
Maciek Fitzner shows how to use :nth-child, :is, and :not to display dots on a dice. - https://mackfitz.hashnode.dev/laying-out-dots-on-a-dice-using-displayflex-pseudo-classes
#css
Maciek Fitzner shows how to use :nth-child, :is, and :not to display dots on a dice. - https://mackfitz.hashnode.dev/laying-out-dots-on-a-dice-using-displayflex-pseudo-classes
#css
Fitz's Anticss
Laying out dots on a dice using display:flex & pseudo-classes
This tutorial presents via trial and error how to display the proper number of dots on dice faces - using display: flex, selectors and pseudo-classes
🔥3👍2
What I Learnt Building a React Toast Component
Emil is the creator of Sonner, a popular toast notifications component. - https://emilkowal.ski/ui/building-a-toast-component
#react
Emil is the creator of Sonner, a popular toast notifications component. - https://emilkowal.ski/ui/building-a-toast-component
#react
Emil Kowalski
How I built Sonner, an opinionated toast library for React used by milions.
🔥7👍2👎1
Upgrading an enterprise app to Angular 16 - https://itnext.io/upgrading-an-enterprise-app-to-angular-16-4a92b1b29906
#angular
#angular
Medium
Upgrading an enterprise app to Angular 16
Here comes the pain
👍3🔥1
Understanding Web Accessibility in Vue.js
As developers, we are tasked with creating applications inclusive of all people, regardless of their hardware, software, language, location, or ability. In this article, we will tackle the basics of web accessibility in our Vue.js applications, looking at some concepts and strategies to consider when designing accessible applications. - https://vueschool.io/articles/vuejs-tutorials/understanding-web-accessibility-in-vue-js/
#vue
As developers, we are tasked with creating applications inclusive of all people, regardless of their hardware, software, language, location, or ability. In this article, we will tackle the basics of web accessibility in our Vue.js applications, looking at some concepts and strategies to consider when designing accessible applications. - https://vueschool.io/articles/vuejs-tutorials/understanding-web-accessibility-in-vue-js/
#vue
vueschool.io
Understanding Web Accessibility in Vue.js - Vue School Articles
As developers, we are tasked with creating applications inclusive of all people, regardless of their hardware, software, language, location, or ability. This article looks at some useful concepts and strategies to providing accessible Vue.js applications.
👍2
Multiple-Page-Application (MPA) in NestJS with Nunjucks
We all know that most frontend is based on a Single-Page-Application (SPA) framework such as Vue, React, or… - https://blog.devgenius.io/multiple-page-application-mpa-in-nest-js-with-nunjucks-1fd522cc1aa
#nodejs
We all know that most frontend is based on a Single-Page-Application (SPA) framework such as Vue, React, or… - https://blog.devgenius.io/multiple-page-application-mpa-in-nest-js-with-nunjucks-1fd522cc1aa
#nodejs
Medium
Multiple-Page-Application (MPA) in NestJS with Nunjucks
We all know that most frontend is based on a Single-Page-Application (SPA) framework such as Vue, React, or Angular. But sometimes, even…
🔥4👍2
Re-Creating The Pop-Out Hover Effect With Modern CSS
Temani Afif shows how to combine CSS masks, CSS variables, trigonometric functions, @property, and more to create a neat hover effect that would have been extremely difficult to create even a few years ago without the latest and greatest that CSS has to offer. - https://www.smashingmagazine.com/2023/09/re-creating-pop-out-hover-effect-css-part1
#css
Temani Afif shows how to combine CSS masks, CSS variables, trigonometric functions, @property, and more to create a neat hover effect that would have been extremely difficult to create even a few years ago without the latest and greatest that CSS has to offer. - https://www.smashingmagazine.com/2023/09/re-creating-pop-out-hover-effect-css-part1
#css
Smashing Magazine
Re-Creating The Pop-Out Hover Effect With Modern CSS (Part 1) — Smashing Magazine
This article is all about experimenting with modern CSS features. We will combine things like CSS masks, CSS variables, trigonometric functions, `@property`, and more to create a neat hover effect that would have been extremely difficult to do even a few…
👍3🔥2❤1
An Alternative to Using State for React Forms
Making the case for using FormData instead of useState, although there are pros and cons to take into account. - https://hackernoon.com/stop-using-state-for-react-forms-there-is-a-much-better-way
#react
Making the case for using FormData instead of useState, although there are pros and cons to take into account. - https://hackernoon.com/stop-using-state-for-react-forms-there-is-a-much-better-way
#react
Hackernoon
Stop Using State for React Forms, There is a Much Better Way!
Learn how to optimize the performance of react forms by replacing useState with the native feature of JavaScript.
🔥3❤1👍1
An Introduction to Quicksort
A good, beginner friendly introduction to the Quicksort algorithm, concluding with a JavaScript implementation. - https://www.kirupa.com/sorts/quicksort.htm
#algorithm
A good, beginner friendly introduction to the Quicksort algorithm, concluding with a JavaScript implementation. - https://www.kirupa.com/sorts/quicksort.htm
#algorithm
KIRUPA
Fast Sorting with Quicksort
Learn all about the quicksort algorithm in this beginner-friendly tutorial. Quicksort is a divide-and-conquer sorting algorithm that is known for its efficiency. This tutorial will walk you through the steps of quicksort, with clear explanations and examples.
👍2
Best VueUse Composables
VueUse has a massive collection of fantastic composables. But with so many, it can be overwhelming to look through them all. With this article, we’ve put together this list, to showcase some of the best Vue composables that deserve some extra attention. - https://medium.com/vue-mastery/best-vueuse-composables-72dc82e2f90f
#vue
VueUse has a massive collection of fantastic composables. But with so many, it can be overwhelming to look through them all. With this article, we’ve put together this list, to showcase some of the best Vue composables that deserve some extra attention. - https://medium.com/vue-mastery/best-vueuse-composables-72dc82e2f90f
#vue
Medium
Best VueUse Composables
Check out this list of some of the top Vue composables from the VueUse library that can save you tons of time and energy.
👍2🔥2
Angular 16 is making big noise
Significant changes in Angular’s whole life! - https://levelup.gitconnected.com/angular-16-is-making-big-noise-6a06e9808788
#nodejs
Significant changes in Angular’s whole life! - https://levelup.gitconnected.com/angular-16-is-making-big-noise-6a06e9808788
#nodejs
Medium
Angular 16 is making big noise 🍬!
Significant changes in Angular’s whole life!
👍3
The Backend-for-Frontend pattern using NextJS: A Step-by-Step Guide
The Backends-for-Frontends pattern might be exactly what you need to avoid monolithic Backend APIs and… - https://javascript.plainenglish.io/the-backend-for-frontend-pattern-using-nextjs-a-step-by-step-guide-c7291fbc225f
#nodejs #bff
The Backends-for-Frontends pattern might be exactly what you need to avoid monolithic Backend APIs and… - https://javascript.plainenglish.io/the-backend-for-frontend-pattern-using-nextjs-a-step-by-step-guide-c7291fbc225f
#nodejs #bff
Medium
The Backend-for-Frontend pattern using NextJS: A Step-by-Step Guide
The Backends-for-Frontends pattern might be exactly what you need to avoid monolithic Backend APIs and Frontends bloated with business…
👍5
A Guide to React Portals
Portals let you render some children into a different part of the DOM / outside the current hierarchy. - https://semaphoreci.com/blog/react-portals
#react
Portals let you render some children into a different part of the DOM / outside the current hierarchy. - https://semaphoreci.com/blog/react-portals
#react
Semaphore
A Guide to React Portals - Semaphore
In this article, we explore React Portals, how they work, and how you can use them effectively in your React applications.
👍4
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
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
Tobiasahlin
Responsive type scales with composable CSS utilities
With the help of calc(), clamp() and CSS vars, we can create composable, responsive, and fluid type scales that smoothly adapts to viewport and container widths.
👍2
A Comprehensive Guide to Data Fetching in Nuxt 3
With Nuxt 3's rendering modes, you can execute API calls and render pages both on the client and server, which has some challenges. In this article, explore everything you need to know about the different data fetching methods available in Nuxt 3 and when to use them. - https://mokkapps.de/blog/a-comprehensive-guide-to-data-fetching-in-nuxt-3
#vue
With Nuxt 3's rendering modes, you can execute API calls and render pages both on the client and server, which has some challenges. In this article, explore everything you need to know about the different data fetching methods available in Nuxt 3 and when to use them. - https://mokkapps.de/blog/a-comprehensive-guide-to-data-fetching-in-nuxt-3
#vue
Michael Hoffmann
A Comprehensive Guide to Data Fetching in Nuxt 3 - Michael Hoffmann | Michael Hoffmann - Senior Frontend Developer (Freelancer)…
With Nuxt 3's rendering modes, you can execute API calls and render pages both on the client and server, which has some challenges. For example, we want to avoid duplicate network calls, efficient caching, and ensure that the calls work across environments.…
👍2❤1🔥1
Angular: Best Practices for 2023
Listing down few practices to catch up to early, on the way to being an Angular Developer. - https://blog.bitsrc.io/angular-best-practices-to-adapt-in-2023-bf67122b37ab
#angular
Listing down few practices to catch up to early, on the way to being an Angular Developer. - https://blog.bitsrc.io/angular-best-practices-to-adapt-in-2023-bf67122b37ab
#angular
Medium
Angular: Best Practices for 2023
Listing down few practices to catch up to early, on the way to being an Angular Developer.
👍5👎1