Implementing OAuth in Nuxt with Supabase
Few years ago, implementing OAuth in an application completely from scratch was not an easy task. In order to do that, you have to implement a flow in your web application that will be followed by both frontend and backend. Supabase achieves this in a much simpler flow. In this article, explore how to implement OAuth in Nuxt with Supabase. - https://dev.to/jacobandrewsky/implementing-oauth-in-nuxt-with-supabase-4p1k
#vue
Few years ago, implementing OAuth in an application completely from scratch was not an easy task. In order to do that, you have to implement a flow in your web application that will be followed by both frontend and backend. Supabase achieves this in a much simpler flow. In this article, explore how to implement OAuth in Nuxt with Supabase. - https://dev.to/jacobandrewsky/implementing-oauth-in-nuxt-with-supabase-4p1k
#vue
DEV Community
Implementing OAuth in Nuxt with Supabase
Few years ago, I have tried to implement OAuth in my web application completely from scratch and I...
The Uphill Battle of Memoization
Two years ago, Dan Abramov wrote about things to do before you use memo() or usememo but Dominik goes a step further into exploring why memo shouldn’t be your very first choice for performance optimizations. - https://tkdodo.eu/blog/the-uphill-battle-of-memoization
#react
Two years ago, Dan Abramov wrote about things to do before you use memo() or usememo but Dominik goes a step further into exploring why memo shouldn’t be your very first choice for performance optimizations. - https://tkdodo.eu/blog/the-uphill-battle-of-memoization
#react
tkdodo.eu
The Uphill Battle of Memoization
Exploring why React.memo shouldn't be your first choice for performance optimizations
How to Build a Server-Side React App Using Vite and Express
A demo of server-side rendering and server-side data fetching without using a full-on framework — showing what React-powered frameworks actually do. - https://thenewstack.io/how-to-build-a-server-side-react-app-using-vite-and-express/
#nodejs
A demo of server-side rendering and server-side data fetching without using a full-on framework — showing what React-powered frameworks actually do. - https://thenewstack.io/how-to-build-a-server-side-react-app-using-vite-and-express/
#nodejs
The New Stack
How to Build a Server-Side React App Using Vite and Express
A demo of server-side rendering and server-side data fetching without using a framework — showing what React-powered frameworks actually do.
Surprising Facts About New CSS Selectors
Scott Vandehey outlines some gotchas with :is(), :not(), :has(), :where(), and & selectors. - https://cloudfour.com/thinks/surprising-facts-about-new-css-selectors
#css
Scott Vandehey outlines some gotchas with :is(), :not(), :has(), :where(), and & selectors. - https://cloudfour.com/thinks/surprising-facts-about-new-css-selectors
#css
Cloud Four
Surprising Facts About New CSS Selectors
I set out to learn a bit about how CSS nesting works, especially the new & selector, and I ended up on a deep dive into the :is() selector and its siblings.
Using lint-staged, husky, and pre-commit hooks to fail fast and early
Context switching kills productivity. Failed CI checks drag us between contexts after we assume our work to…
- https://codeburst.io/continuous-integration-lint-staged-husky-pre-commit-hook-test-setup-47f8172924fc
#husky #lint-staged
Context switching kills productivity. Failed CI checks drag us between contexts after we assume our work to…
- https://codeburst.io/continuous-integration-lint-staged-husky-pre-commit-hook-test-setup-47f8172924fc
#husky #lint-staged
Medium
Using lint-staged, husky, and pre-commit hooks to fail fast and early
Context switching kills productivity. Failed CI checks drag us between contexts after we assume our work to be done. How can we fail…
24 Articles for Learning Nuxt 3
Articles are a very quick way to pick up knowledge. So in this article, 24 useful articles have been compiled to help you gain extensive knowledge on Nuxt 3. - https://masteringnuxt.com/blog/24-articles-for-learning-nuxt3
#vue
Articles are a very quick way to pick up knowledge. So in this article, 24 useful articles have been compiled to help you gain extensive knowledge on Nuxt 3. - https://masteringnuxt.com/blog/24-articles-for-learning-nuxt3
#vue
Masteringnuxt
24 Articles for Learning Nuxt 3
Tutorials and reading articles are a great way to pick up knowledge. This article is a compilation of 24 useful articles to learn Nuxt 3
Using GitHub Actions to Automate a React Native Workflow - https://elazizi.com/posts/5-github-actions-to-automate-your-react-native-workflow/
#reactnative #github #actions
#reactnative #github #actions
Elazizi
5+ Github Actions to Automate Your React Native Workflow
In this article, I will share with you 7+ Github Actions to Automate Your React Native Workflow.
Best Practices for Bootstrapping a Node App Configuration - https://www.lirantal.com/blog/best-practices-for-bootstrapping-a-node-js-application-configuration
#nodejs
#nodejs
Liran Tal
Best Practices for Bootstrapping a Node.js Application Configuration
Follow these best practices to bootstrap a Node.js application configuration in a robust and maintainable way using env-schema.
Messing About with CSS Gradients
Michelle Barker explores creative use cases for CSS gradients. - https://css-irl.info/messing-about-with-css-gradients
#css
Michelle Barker explores creative use cases for CSS gradients. - https://css-irl.info/messing-about-with-css-gradients
#css
CSS { In Real Life } | Messing About with CSS Gradients
A blog about CSS, front-end development, the web, and beyond.
From NgRx ComponentStore to SignalStore: the key takeaways from my demo project - https://www.angularaddicts.com/p/from-ngrx-componentstore-to-signalstore
#angular
#angular
Angularaddicts
From NgRx ComponentStore to SignalStore: the key takeaways from my demo project
How to prepare for migration effectively
Easy RPC with Nuxt: Making a Todo App
We're going to make a simple to-do app with Nuxt. Except, instead of manually defining server routes and fetching them on the client, we're going to use Prim+RPC to define functions on Nuxt's server and simply call those functions directly from the client - https://blog.doseofted.me/easy-rpc-with-nuxt-making-a-todo-app
#vue
We're going to make a simple to-do app with Nuxt. Except, instead of manually defining server routes and fetching them on the client, we're going to use Prim+RPC to define functions on Nuxt's server and simply call those functions directly from the client - https://blog.doseofted.me/easy-rpc-with-nuxt-making-a-todo-app
#vue
Dose of Ted
Easy RPC with Nuxt: Making a Todo App
We're going to make a simple to-do app with Nuxt. Except, instead of manually defining server routes and fetching them on the client, we're going to use Prim+RPC to define functions on Nuxt's server and simply call those functions directly from the c...
React Memo is.. Good Actually
The use of React’s memoization features can be ‘a controversial, complex & ever evolving topic’ (see last issue’s The Uphill Battle of Memoization, for example) but Tim thinks there are a lot of misconceptions and works through nine of them here – some technical, some more philosophical in nature. - https://timtech.blog/posts/react-memo-is-good-actually/
#react
The use of React’s memoization features can be ‘a controversial, complex & ever evolving topic’ (see last issue’s The Uphill Battle of Memoization, for example) but Tim thinks there are a lot of misconceptions and works through nine of them here – some technical, some more philosophical in nature. - https://timtech.blog/posts/react-memo-is-good-actually/
#react
Tim's Tech Blog
React memo is good actually
React memo, useMemo & useCallback can be controversial. Let us review the most common misconceptions about them, and see how they're good, actually.
Effective Code Review Strategies for Successful Projects
In the world of software development, a Tech lead is akin to a seasoned captain steering the ship through… - https://javascript.plainenglish.io/effective-code-review-strategies-for-successful-projects-node-js-ff7d6f3b9005
#codereview
In the world of software development, a Tech lead is akin to a seasoned captain steering the ship through… - https://javascript.plainenglish.io/effective-code-review-strategies-for-successful-projects-node-js-ff7d6f3b9005
#codereview
Medium
Effective Code Review Strategies for Successful Projects (Node.js)
In the world of software development, a Tech lead is akin to a seasoned captain steering the ship through calm seas and turbulent storms…
Designing Web Design Documentation
Frederick O’Brien explains why documentation must be interactive and constantly evolving. - https://www.smashingmagazine.com/2023/11/designing-web-design-documentation
#css
Frederick O’Brien explains why documentation must be interactive and constantly evolving. - https://www.smashingmagazine.com/2023/11/designing-web-design-documentation
#css
Smashing Magazine
Designing Web Design Documentation — Smashing Magazine
Words alone aren’t enough to safeguard best practices in the world of web design and development. Web design documentation must be like its medium — interactive and constantly evolving.
36 Node CLI App Best Practices
From the creator of several Node-based CLI tools comes this helpful collection of best practices for building “successful, empathic and user-friendly” CLI tools using Node, plus an appendix rounding up popular CLI framework options. - https://github.com/lirantal/nodejs-cli-apps-best-practices
#nodejs
From the creator of several Node-based CLI tools comes this helpful collection of best practices for building “successful, empathic and user-friendly” CLI tools using Node, plus an appendix rounding up popular CLI framework options. - https://github.com/lirantal/nodejs-cli-apps-best-practices
#nodejs
GitHub
GitHub - lirantal/nodejs-cli-apps-best-practices: The largest Node.js CLI Apps best practices list ✨
The largest Node.js CLI Apps best practices list ✨ - lirantal/nodejs-cli-apps-best-practices
Unlock the Power of HTTP Request Cancellation in Angular
HTTP request cancellation in Angular means that you abort or cancel an ongoing HTTP request before it gets completed. - https://www.angularaddicts.com/p/unlock-the-power-of-http-request-cancellation
#angular
HTTP request cancellation in Angular means that you abort or cancel an ongoing HTTP request before it gets completed. - https://www.angularaddicts.com/p/unlock-the-power-of-http-request-cancellation
#angular
Angularaddicts
Unlock the Power of HTTP Request Cancellation in Angular
For faster responses and smoother interactions
You Don't Need to Learn Svelte – Here's Why
I mean.. you kinda do, but Kavii’s excitement is infectious and Svelte’s approach remains refreshing. - https://kaviisuri.com/you-dont-need-to-learn-svelte
#svelte
I mean.. you kinda do, but Kavii’s excitement is infectious and Svelte’s approach remains refreshing. - https://kaviisuri.com/you-dont-need-to-learn-svelte
#svelte
Kavii Suri
You Don't Need to Learn Svelte – Here's Why
Discover the hidden power of Svelte – the JavaScript framework that feels like déjà vu. Uncover how Svelte simplifies web development, reimagining JS.
Custom Error Pages in Nuxt 3
Nuxt 3 has a ton of built-in features that just work without requiring anything of you — including an error page. But did you know you could replace Nuxt’s error page to your own custom page. This article dives into how to create a custom error page for Nuxt 3 applications. - https://masteringnuxt.com/blog/custom-error-pages-in-nuxt3
#vue
Nuxt 3 has a ton of built-in features that just work without requiring anything of you — including an error page. But did you know you could replace Nuxt’s error page to your own custom page. This article dives into how to create a custom error page for Nuxt 3 applications. - https://masteringnuxt.com/blog/custom-error-pages-in-nuxt3
#vue
Masteringnuxt
Custom Error Pages in Nuxt 3
This article dives into how to create a custom error page for Nuxt 3 applications to replace Nuxt 3's built in error page.
React Forget: React for Developers and Compilers
A React core team member went deep at React India two weeks ago with a look at why React’s model is well suited for targeting by compilers and static analysis tools, but also why the React team are even building a compiler in the first place. - https://www.youtube.com/watch?v=kjOacmVsLSE
#react
A React core team member went deep at React India two weeks ago with a look at why React’s model is well suited for targeting by compilers and static analysis tools, but also why the React team are even building a compiler in the first place. - https://www.youtube.com/watch?v=kjOacmVsLSE
#react
YouTube
React Forget: React for developers and compilers - Sathya Gunasekaran
Sathya is a software engineer on the React core team at Meta. Previously, he worked on the V8 JavaScript compiler at Google.
About the session Statically analysing react components for fun and profit.
His talk will dive into what makes the react programming…
About the session Statically analysing react components for fun and profit.
His talk will dive into what makes the react programming…
Handling scrolling on Angular router transitions
By default, when a new route is activated, Angular’s router doesn’t touch the scroll position. At least this… - https://medium.com/front-end-weekly/handling-scrolling-on-angular-router-transitions-e7652e57d964
#angular
By default, when a new route is activated, Angular’s router doesn’t touch the scroll position. At least this… - https://medium.com/front-end-weekly/handling-scrolling-on-angular-router-transitions-e7652e57d964
#angular
Medium
Handling scrolling on Angular router transitions
By default, when a new route is activated, Angular’s router doesn’t touch the scroll position. At least this is still true of Angular 9…