Creating New Supabase Users In NextJS
A tutorial on implementing user authentication in a Next.js application using Supabase, an open-source Firebase alternative.
A tutorial on implementing user authentication in a Next.js application using Supabase, an open-source Firebase alternative.
A concise guide to learning Next.js, covering its core concepts, features, and setup in a tweet-thread format.
Tips for reducing client-side JavaScript in Next.js applications, including disabling JS on static pages and replacing React with Preact.
A developer details his migration from the Hexo static site generator to Next.js, highlighting the technical challenges and benefits of the new framework.
Announcing Colbyashi Maru, a live coding challenge series where guests build projects from scratch in one hour.
A technical tutorial on integrating an Instagram feed into a Next.js website using the instagram-web-api npm package, covering authentication and data fetching.
Learn how to enable AMP (Accelerated Mobile Pages) in Next.js projects, including AMP-only and hybrid modes with the useAmp hook.
A guide on how to add custom Babel presets and plugins to a Next.js project by creating and configuring a .babelrc file.
A developer's 2020 year-in-review, summarizing their journey creating educational tech content, including articles, videos, and tutorials on React, Next.js, and mapping apps.
Learn how to fetch API data at build time with getStaticProps and at runtime with React hooks in a Next.js application.
Learn how to disable anonymous telemetry data collection in Next.js using CLI commands or environment variables.
A tutorial on refreshing server-side data in Next.js without a full page reload, focusing on the Pages Router.
A guide explaining where console.log statements appear in Next.js applications, covering client-side browser logs and server-side terminal/logs.
Explains React Strict Mode in Next.js, its benefits for identifying potential issues, and how to enable it globally or for specific components.
A guide on using environment variables in Next.js applications, including configuration for both server and client-side, and deployment on Netlify.
Learn how to add global CSS styles to a Next.js application by importing them in the _app.js file.
Learn how to create a custom 404 error page in Next.js by adding a 404.js file to your pages directory for custom branding and styling.
Learn how to use absolute imports in Next.js to simplify file imports and improve project organization with jsconfig/tsconfig.
A tutorial on creating a Markdown blog using NextJS and Gatsby static site generators, covering setup, templates, and rendering.
Learn how to use useEffect and useRef to access browser APIs like 'window' in Next.js, avoiding 'window is not defined' errors.