Angular Architecture for Large Web Applications
Optimizing monolithic Angular projects with libraries using Nx. - https://albertobasalo.medium.com/optimizing-the-architecture-of-large-web-applications-with-angular-79d03b01a92b
#angular
Optimizing monolithic Angular projects with libraries using Nx. - https://albertobasalo.medium.com/optimizing-the-architecture-of-large-web-applications-with-angular-79d03b01a92b
#angular
Medium
Angular Architecture for Large Web Applications
Optimizing monolithic Angular projects with libraries using Nx.
Building an Image Search App with OpenAI CLIP, Postgres & React
A tutorial that brings together a lot of ideas in one place. CLIP is used to turn images into text descriptions. Postgres is used as a vector database. JavaScript provides the glue for both the frontend (with React) and backend (Node.js). - https://www.timescale.com/blog/how-to-build-an-image-search-application-with-openai-clip-postgresql-in-javascript/
#react
A tutorial that brings together a lot of ideas in one place. CLIP is used to turn images into text descriptions. Postgres is used as a vector database. JavaScript provides the glue for both the frontend (with React) and backend (Node.js). - https://www.timescale.com/blog/how-to-build-an-image-search-application-with-openai-clip-postgresql-in-javascript/
#react
Timescale Blog
How to Build an Image Search Application With OpenAI CLIP & PostgreSQL in JavaScript
See how you can build an image search engine using OpenAI CLIP and PostgreSQL for numerous applications, from e-commerce to healthcare and augmented reality.
The Story of the Hono Web Framework
Hono is a lightweight framework designed to run on any JavaScript runtime that's been picking up steam in the past year. With it, you can create an app in a Express-like style but run it on Cloudflare Workers, Deno, Bun, or Node. - https://blog.cloudflare.com/the-story-of-web-framework-hono-from-the-creator-of-hono/
#nodejs
Hono is a lightweight framework designed to run on any JavaScript runtime that's been picking up steam in the past year. With it, you can create an app in a Express-like style but run it on Cloudflare Workers, Deno, Bun, or Node. - https://blog.cloudflare.com/the-story-of-web-framework-hono-from-the-creator-of-hono/
#nodejs
The Cloudflare Blog
The story of web framework Hono, from the creator of Hono
Hono is a web framework that is fast, lightweight, and built using the Web Standards API. Hear the story of Hono by the creator of Hono.
Automating Releases and Publishing with Nx Release
With Nx Release, you can automate releases and publish packages in monorepos, streamlining your development… - https://medium.com/techleads-diary/automating-releases-and-publishing-with-nx-release-864a430940cd
#nx
With Nx Release, you can automate releases and publish packages in monorepos, streamlining your development… - https://medium.com/techleads-diary/automating-releases-and-publishing-with-nx-release-864a430940cd
#nx
Medium
Automating Releases and Publishing with Nx Release
With Nx Release, you can automate releases and publish packages in monorepos, streamlining your development process.
Dynamic Numbering with CSS Counters
Kevin Powell demonstrates how powerful CSS Counters can be. - https://www.youtube.com/watch?v=tnSzkAiiQ4w
#css
Kevin Powell demonstrates how powerful CSS Counters can be. - https://www.youtube.com/watch?v=tnSzkAiiQ4w
#css
YouTube
Dynamic numbering with CSS counters
Looking to step up your CSS? https://kevinpowell.co/courses
CSS Counters are one of those things a lot of people aren't aware of, and most people who do know about them don't realize all the things you can do with them!
Get a YT membership: Join this channel…
CSS Counters are one of those things a lot of people aren't aware of, and most people who do know about them don't realize all the things you can do with them!
Get a YT membership: Join this channel…
How can I integrate Vue.js into an existing Shopify theme?
Here’s a step-by-step guide with code examples for integrating Vue.js into an existing Shopify theme. - https://dev.to/sdlc_corp/how-can-i-integrate-vuejs-into-an-existing-shopify-theme-3jp0
#vue
Here’s a step-by-step guide with code examples for integrating Vue.js into an existing Shopify theme. - https://dev.to/sdlc_corp/how-can-i-integrate-vuejs-into-an-existing-shopify-theme-3jp0
#vue
DEV Community
How can I integrate Vue.js into an existing Shopify theme?
Integrating Vue.js into an existing Shopify theme involves several steps. Here's a step-by-step guide...
Architecting Angular: Part 3 — Effortless Data Mocking
Seamless mocking, rock-solid tests, and a smoother Angular development experience with Mock Service Worker. - https://itnext.io/architecting-angular-part-3-effortless-data-mocking-b7ba690f4331
#angular
Seamless mocking, rock-solid tests, and a smoother Angular development experience with Mock Service Worker. - https://itnext.io/architecting-angular-part-3-effortless-data-mocking-b7ba690f4331
#angular
Medium
Architecting Angular: Part 3 — Effortless Data Mocking
Seamless mocking, rock-solid tests, and a smoother Angular development experience with Mock Service Worker.
Why I’m Skeptical of Rewriting JavaScript Tools in “Faster” Languages
Rewriting common JavaScript infrastructure / build tools in ‘faster’ languages like Rust, Zig or Go has become popular in the past few years, but is it really necessary, asks Nolan? - https://nolanlawson.com/2024/10/20/why-im-skeptical-of-rewriting-javascript-tools-in-faster-languages/
#nodejs
Rewriting common JavaScript infrastructure / build tools in ‘faster’ languages like Rust, Zig or Go has become popular in the past few years, but is it really necessary, asks Nolan? - https://nolanlawson.com/2024/10/20/why-im-skeptical-of-rewriting-javascript-tools-in-faster-languages/
#nodejs
Read the Tea Leaves
Why I’m skeptical of rewriting JavaScript tools in “faster” languages
I’ve written a lot of JavaScript. I like JavaScript. And more importantly, I’ve built up a set of skills in understanding, optimizing, and debugging JavaScript that I’m reluctant …
Solved by CSS Scroll-Driven Animations: hide a header when scrolling down, show it again when scrolling up.
Bramus Van Damme explains how to create a CSS-only sticky header that hides and shows depending on the scroll direction, based on a demo by Fabrizio Calderan. - https://www.bram.us/2024/09/29/solved-by-css-scroll-driven-animations-hide-a-header-when-scrolling-up-show-it-again-when-scrolling-down
#css
Bramus Van Damme explains how to create a CSS-only sticky header that hides and shows depending on the scroll direction, based on a demo by Fabrizio Calderan. - https://www.bram.us/2024/09/29/solved-by-css-scroll-driven-animations-hide-a-header-when-scrolling-up-show-it-again-when-scrolling-down
#css
Bram.us
Solved by CSS Scroll-Driven Animations: hide a header when scrolling down, show it again when scrolling up.
By adding a long transition-delay to a CSS property under certain conditions (which you can do using a Style Query), you can persist its value.
How to Conditionally Run Code Only on the Server or Only on the Client in a Nuxt App
Discover how Nuxt improves performance and SEO with its server-side and client-side rendering capabilities. Learn best practices for managing code execution to avoid hydration mismatches and ensure efficient rendering in your applications. - https://masteringnuxt.com/blog/how-to-conditionally-run-code-only-on-the-server-or-only-on-the-client-in-a-nuxt-app
#vue
Discover how Nuxt improves performance and SEO with its server-side and client-side rendering capabilities. Learn best practices for managing code execution to avoid hydration mismatches and ensure efficient rendering in your applications. - https://masteringnuxt.com/blog/how-to-conditionally-run-code-only-on-the-server-or-only-on-the-client-in-a-nuxt-app
#vue
Masteringnuxt
How to Conditionally Run Code Only on the Server or Only on the Client in a Nuxt App
Discover how Nuxt improves performance and SEO with its server-side and client-side rendering capabilities. Learn best practices for managing code execution to avoid hydration mismatches and ensure efficient rendering in your applications.
How To Write API Response Types with TypeScript
Organize TypeScript types for API responses to ensure a great development experience, code maintenance, and… - https://itnext.io/how-to-write-api-response-types-with-typescript-f8152ddd43dd
#typescript
Organize TypeScript types for API responses to ensure a great development experience, code maintenance, and… - https://itnext.io/how-to-write-api-response-types-with-typescript-f8152ddd43dd
#typescript
Medium
How To Write API Response Types with TypeScript
Organize TypeScript types for API responses to ensure a great development experience, code maintenance, and avoidance of obvious coding…
Best Testing Practices in Node.js
A quick-fire list of 15 worthwhile testing practices to use in order to write efficient, effective, and easy-to-maintain tests. - https://blog.appsignal.com/2024/10/16/best-testing-practices-in-nodejs.html
#nodejs
A quick-fire list of 15 worthwhile testing practices to use in order to write efficient, effective, and easy-to-maintain tests. - https://blog.appsignal.com/2024/10/16/best-testing-practices-in-nodejs.html
#nodejs
Appsignal
Best Testing Practices in Node.js | AppSignal Blog
Check out 15 best testing practices to write efficient, effective, and easy-to-maintain tests in Node.
Recharts 2.13: Chart Library Built with React and D3
Easy to deploy with declarative components, and native SVG support. Line, bar, scatter, composed, pie, and radar charts are offered. There are lots of examples, complete with code. - https://recharts.org/en-US/
#react
Easy to deploy with declarative components, and native SVG support. Line, bar, scatter, composed, pie, and radar charts are offered. There are lots of examples, complete with code. - https://recharts.org/en-US/
#react
Angular: Downloading files and implementing a progress bar for tracking the…
This story is something very similar to what I have written years back. That story was related to… - https://blog.stackademic.com/angular-downloading-files-and-implementing-a-progress-bar-for-tracking-the-download-bd1cb552d646
#angular
This story is something very similar to what I have written years back. That story was related to… - https://blog.stackademic.com/angular-downloading-files-and-implementing-a-progress-bar-for-tracking-the-download-bd1cb552d646
#angular
Medium
Angular: Downloading files and implementing a progress bar for tracking the download
This story is something very similar to what I have written years back. That story was related to implementing progress bars for uploading…
Implementing Facial Recognition Authentication in Vue.js with FACEIO
This article will guide you through integrating FACEIO, a powerful facial recognition API, into your Vue.js application. - https://dev.to/vyan/implementing-facial-recognition-authentication-in-vuejs-with-faceio-664
#vue
This article will guide you through integrating FACEIO, a powerful facial recognition API, into your Vue.js application. - https://dev.to/vyan/implementing-facial-recognition-authentication-in-vuejs-with-faceio-664
#vue
DEV Community
Implementing Facial Recognition Authentication in Vue.js with FACEIO
In today's digital landscape, security is paramount. Facial recognition technology offers a...
Building a Dynamic Background Effect
Ryan Finni shows how to create a randomized, animated icon background for any content section. - https://www.letsbuildui.dev/articles/building-a-dynamic-background-effect
#css
Ryan Finni shows how to create a randomized, animated icon background for any content section. - https://www.letsbuildui.dev/articles/building-a-dynamic-background-effect
#css
Let's Build UI
Building a Dynamic Background Effect
How to create a randomized, animated icon background for any content section.
5 amazing new JavaScript features in ES15
5 juicy ES15 features with new functionality for cleaner and shorter JavaScript code in 2024. - https://medium.com/coding-beauty/es15-javascript-features-fc2d1f7a00ce
#javascript
5 juicy ES15 features with new functionality for cleaner and shorter JavaScript code in 2024. - https://medium.com/coding-beauty/es15-javascript-features-fc2d1f7a00ce
#javascript
Medium
5 amazing new JavaScript features in ES15 (2024)
5 juicy ES15 features with new functionality for cleaner and shorter JavaScript code in 2024.
Chakra UI v3: The Comprehensive React Component Suite
Chakra is a popular suite of accessible, reusable, and composable React components and v3 is essentially a complete rewrite to modern standards. - https://www.chakra-ui.com/blog/00-announcing-v3
#react
Chakra is a popular suite of accessible, reusable, and composable React components and v3 is essentially a complete rewrite to modern standards. - https://www.chakra-ui.com/blog/00-announcing-v3
#react
Chakra-Ui
Announcing v3 | Chakra UI
Today, we're excited to announce the release of Chakra UI v3.0