It’s Time To Talk About “CSS5”
Brecht De Ruyte shares how the W3C CSS-Next community group is actively searching for better approaches for describing the evolution of CSS and identifying feature sets as effectively as we did with CSS3 in 2009. - https://www.smashingmagazine.com/2024/08/time-to-talk-about-css5
#css
Brecht De Ruyte shares how the W3C CSS-Next community group is actively searching for better approaches for describing the evolution of CSS and identifying feature sets as effectively as we did with CSS3 in 2009. - https://www.smashingmagazine.com/2024/08/time-to-talk-about-css5
#css
Smashing Magazine
It’s Time To Talk About “CSS5” — Smashing Magazine
Have you ever wondered what happened after CSS3? It’s common knowledge that we never saw CSS4 come after it, yet we have a plethora of new features that have no similar way of defining when they were introduced. The W3C CSS-Next community group is actively…
👍5❤1
The Node.js Best Practices List: 2024 Edition
An in-depth guide for Node developers that we link to most years. Divided into 8 sections and updated regularly, it digs into areas from error handling and code style to Docker and security practices. - https://github.com/goldbergyoni/nodebestpractices#readme
#nodejs
An in-depth guide for Node developers that we link to most years. Divided into 8 sections and updated regularly, it digs into areas from error handling and code style to Docker and security practices. - https://github.com/goldbergyoni/nodebestpractices#readme
#nodejs
GitHub
GitHub - goldbergyoni/nodebestpractices: ✅ The Node.js best practices list (July 2026)
✅ The Node.js best practices list (July 2026). Contribute to goldbergyoni/nodebestpractices development by creating an account on GitHub.
👍4
Catching Up With The Latest Features In Angular - https://ionic.io/blog/catching-up-with-the-latest-features-in-angular
#angular
#angular
Ionic Blog
Catching Up With The Latest Features In Angular
Angular is having a bit of a renaissance lately. With the move to standalone components, the Angular team has been on a roll shipping new features and improvements to the framework at such speed, it’s hard to believe this is the same Angular we’ve come to…
👍2❤1
5 Essentials for Modern Frontend Architecture
Quick insights to better design your frontend architecture - https://blog.bitsrc.io/5-tips-for-modern-frontend-architecture-e3342241cb15
#architecture
Quick insights to better design your frontend architecture - https://blog.bitsrc.io/5-tips-for-modern-frontend-architecture-e3342241cb15
#architecture
Medium
5 Essentials for Modern Frontend Architecture
Quick insights to better design your frontend architecture
👍4❤1
5 Must-Have Nuxt Modules Every Developer Should Know
In this article the author explores some of his go to Nuxt modules and how they affect his project. - https://blog.stackademic.com/5-must-have-nuxt-modules-every-developer-should-know-7758f64ffa52
#vue
In this article the author explores some of his go to Nuxt modules and how they affect his project. - https://blog.stackademic.com/5-must-have-nuxt-modules-every-developer-should-know-7758f64ffa52
#vue
Medium
5 Must-Have Nuxt Modules Every Developer Should Know!
The Nuxt.js community has lots of things to offer but in this article, we will go through the modules that I use in almost all of my…
👍5
A Workshop on Building React Hooks
A new online video course from Kent C. Dodds that’s free (but signup-walled once past the introductions). The focus is on rebuilding useState and useEffect from scratch. - https://www.epicreact.dev/tutorials/build-react-hooks
#react
A new online video course from Kent C. Dodds that’s free (but signup-walled once past the introductions). The focus is on rebuilding useState and useEffect from scratch. - https://www.epicreact.dev/tutorials/build-react-hooks
#react
Epic React
Build React Hooks Tutorial
In this tutorial, you'll recreate useState and useEffect from scratch, learn essential rules, and understand how hooks manage state and renders.
👍4
Angular: Integrating micro-frontends at build time using libraries and runtime…
In this story, we will be building a micro-frontend using angular libraries. - https://blog.stackademic.com/angular-integrating-micro-frontends-at-build-time-using-libraries-and-runtime-using-angular-e4dca19b3cb3
#angular
In this story, we will be building a micro-frontend using angular libraries. - https://blog.stackademic.com/angular-integrating-micro-frontends-at-build-time-using-libraries-and-runtime-using-angular-e4dca19b3cb3
#angular
Medium
Integrating Micro-Frontends at Build Time Using Libraries and Runtime Using Angular Elements
In this story, we will be building a micro-frontend using Angular libraries.
👍2
Providing Type Definitions for CSS with @property
Stephanie Eckles explains when and why traditional fallback values can fail and how @property features allow us to write safer, more resilient CSS custom property definitions. - https://moderncss.dev/providing-type-definitions-for-css-with-at-property
#css
Stephanie Eckles explains when and why traditional fallback values can fail and how @property features allow us to write safer, more resilient CSS custom property definitions. - https://moderncss.dev/providing-type-definitions-for-css-with-at-property
#css
Modern CSS Solutions
Providing Type Definitions for CSS with @property | Modern CSS Solutions
Write safer CSS using `@property`, which enables defining types for custom properties. Learn why traditional fallback values can fail, and how `@property` features improve the resilience of custom property definitions.
👍3
Node.js Doubles Security Releases with Newly Automated Process
The Node project has automated its security release process, doubling the number of releases, and is re-evaluating unsupported experimental features with the Next 10 group to enhance security. - https://socket.dev/blog/node-js-doubles-security-releases-with-newly-automated-process
#nodejs
The Node project has automated its security release process, doubling the number of releases, and is re-evaluating unsupported experimental features with the Next 10 group to enhance security. - https://socket.dev/blog/node-js-doubles-security-releases-with-newly-automated-process
#nodejs
Socket
Node.js Doubles Security Releases with Newly Automated Proce...
Node.js has automated its security release process, doubling the number of releases, and is re-evaluating unsupported experimental features with the N...
👍2
Dynamic Components in Vue
This video provides an introduction to dynamic components and why they are useful. It also dives into different ways to implement dynamic components in Vue.js. - https://www.youtube.com/watch?v=YLFOynY72sE
#vue
This video provides an introduction to dynamic components and why they are useful. It also dives into different ways to implement dynamic components in Vue.js. - https://www.youtube.com/watch?v=YLFOynY72sE
#vue
YouTube
Dynamic Components in Vue
🃏 The more complex scenarios applications have to cover, the more the need for dynamic components increases. Using different tabs, icons, modals with different content or blocks defined in a CMS - all these cases are typical for dynamic components. But how…
👍5👌1
Flexible Network Data Preloading in Large SPAs - https://mmazzarolo.com/blog/2024-07-29-data-preloading-script/
#react
#react
Mmazzarolo
Flexible network data preloading in large SPAs
Sharing my experience with a pattern I’ve used multiple times to implement flexible network data preloading in large client-side-rendered SPAs.
👍3❤1
Promises from the Ground Up
Josh notes that in order to truly understand promises, a fundamental part of modern JS development, we need “a surprisingly deep understanding of how JavaScript works and what its limitations are”. Luckily, this tutorial covers all the critical context you need. - https://www.joshwcomeau.com/javascript/promises/
#javascript
Josh notes that in order to truly understand promises, a fundamental part of modern JS development, we need “a surprisingly deep understanding of how JavaScript works and what its limitations are”. Luckily, this tutorial covers all the critical context you need. - https://www.joshwcomeau.com/javascript/promises/
#javascript
Joshwcomeau
Promises From The Ground Up • Josh W. Comeau
The “Promises” API is a surprisingly tricky part of modern JavaScript. Without the right context, it doesn’t make much sense at all! In this tutorial, you’ll build an intuition for how Promises work by getting a deeper understanding of JavaScript and its…
👍6
Zoom, Zoom, and Zoom
Miriam Suzanne explores in detail the three types of browser magnification. - https://www.oddbird.net/2024/07/09/zoomies
#css
Miriam Suzanne explores in detail the three types of browser magnification. - https://www.oddbird.net/2024/07/09/zoomies
#css
OddBird
Zoom, zoom, and zoom
The three types of browser (and CSS!) magnification
👍4
Running Postgres inside Node-RED via WASM and PGlite
Node-RED is a popular Node.js-based ‘low code’ programming environment where you build ‘flows’ in the browser to connect code together. - https://conoroneill.net/2024/08/18/running-postgres-inside-node-red-via-wasm-and-pglite/
#nodejs
Node-RED is a popular Node.js-based ‘low code’ programming environment where you build ‘flows’ in the browser to connect code together. - https://conoroneill.net/2024/08/18/running-postgres-inside-node-red-via-wasm-and-pglite/
#nodejs
Cross Dominant
Running Postgres inside Node-RED via WASM and PGlite · Cross Dominant
Mixed laterality since 1968
👍4❤1
Easy and effective State Management for Angular with Signals
In this blog, we will delve into a simple and effective State Management technique using the novel Signals… - https://medium.com/@atakankorez/easy-and-effective-state-management-for-angular-with-signals-9dc81e904c18
#angular
In this blog, we will delve into a simple and effective State Management technique using the novel Signals… - https://medium.com/@atakankorez/easy-and-effective-state-management-for-angular-with-signals-9dc81e904c18
#angular
Medium
Easy and effective State Management for Angular with Signals
In this blog, we will delve into a simple and effective State Management technique using the novel Signals architecture introduced in…
👍4
Full Stack Web Push API Guide
A complete implementation of push notifications in a Remix app. “If you follow the walk through to the end, you’ll have working push notifications.” - https://www.bocoup.com/blog/full-stack-web-push-api-guide
#web #push
A complete implementation of push notifications in a Remix app. “If you follow the walk through to the end, you’ll have working push notifications.” - https://www.bocoup.com/blog/full-stack-web-push-api-guide
#web #push
Bocoup
A Worker-Owned Tech Consultancy - Bocoup
Web Platform Consulting Services
👍2
Seamless Payments: Integrating Stripe with Vue.js and Node.js
In this blog, learn how to integrate Stripe payment gateway into a Vue.js application. - https://rabinson.hashnode.dev/seamless-payments-integrating-stripe-with-vuejs-and-nodejs
#vue
In this blog, learn how to integrate Stripe payment gateway into a Vue.js application. - https://rabinson.hashnode.dev/seamless-payments-integrating-stripe-with-vuejs-and-nodejs
#vue
👍4❤1
React Owner Components
Owners vs parents and why it matters. - https://reacttraining.com/blog/react-owner-components
#react
Owners vs parents and why it matters. - https://reacttraining.com/blog/react-owner-components
#react
ReactTraining.com
React Owner Components
React Corporate Workshops, Training, and Consulting
👍5
Implementing SAML SSO in Node with Microsoft Entra ID - https://www.sheshbabu.com/posts/implementing-saml-authentication-in-node-js/
#nodejs
#nodejs
Shesh's blog
Implementing SAML SSO in Node.js with Microsoft Entra ID
Authenticate with Microsoft Entra ID (Azure Active Directory) using Node.js, Express and Passport
👍2
CSS Grid Areas
Ahmad Shadeed takes a fresh look at the CSS grid template areas and discusses how to maximize their potential today. - https://ishadeed.com/article/css-grid-area
#css
Ahmad Shadeed takes a fresh look at the CSS grid template areas and discusses how to maximize their potential today. - https://ishadeed.com/article/css-grid-area
#css
Ishadeed
CSS Grid Areas
A fresh look at the CSS grid template areas and how to take advantage of its full potential today.
👍3