Next Js
js is a React framework for building production web applications, adding server-side rendering, static site generation, routing, and API endpoints on top of React.
49 resources across 3 libraries
Glossary Terms(45)
React
React is a declarative, component-based JavaScript library created by Meta for building interactive user interfaces, using a virtual DOM to efficiently update…
Next.js
Next.js is a React framework for building production web applications, adding server-side rendering, static site generation, routing, and API endpoints on top…
Node.js
Node.js is a JavaScript runtime built on Chrome's V8 engine that lets JavaScript run outside the browser, enabling scalable, event-driven server-side applicati…
Tailwind CSS
Tailwind CSS is a utility-first CSS framework that provides a large set of low-level, single-purpose utility classes for building custom user interfaces direct…
Bootstrap
Bootstrap is a popular open-source CSS framework that provides a responsive grid system, prebuilt UI components, and utility classes for building mobile-first…
Supabase
Supabase is an open-source backend-as-a-service platform built around PostgreSQL, providing a managed database, authentication, auto-generated APIs, file stora…
WordPress
WordPress is an open-source content management system (CMS) that powers a large share of websites worldwide, letting users create and manage websites, blogs, a…
Zod
Zod is a TypeScript-first schema declaration and validation library that lets developers define a schema once and use it for both runtime validation and static…
Chakra UI
Chakra UI is an accessible, modular component library for React that provides a set of pre-built, themeable UI building blocks and a composable style-prop syst…
Clerk
Clerk is a developer-first authentication and user management platform that provides pre-built, embeddable UI components and APIs for sign-up, sign-in, user pr…
Contentful
Contentful is a headless content management system (CMS) that stores and delivers structured content through an API, allowing developers to build any frontend…
Convex
Convex is a reactive backend-as-a-service platform that combines a real-time database, serverless functions, and file storage into a single TypeScript-native b…
Blazor
Blazor is a Microsoft web framework, part of ASP.NET Core, that lets developers build interactive web user interfaces using C# and .NET instead of JavaScript.
Bolt
Bolt (Bolt.new) is an AI-powered, browser-based app builder from StackBlitz that generates and runs full-stack web applications directly from natural-language…
Gatsby
Gatsby is a React-based framework for building static and server-rendered websites, using GraphQL to pull data from many sources at build time into fast, pre-r…
Ghost
Ghost is an open-source, headless content management and publishing platform built with Node.js, designed specifically for blogging, newsletters, and independe…
Turborepo
Turborepo is a high-performance build system for JavaScript and TypeScript monorepos, developed by Vercel, that speeds up task execution through intelligent ca…
Vercel
Vercel is a frontend cloud platform for deploying and hosting modern web applications, most notably Next.js, with Git-based deployments, edge functions, and au…
Alpine.js
Alpine.js is a minimal JavaScript framework that adds reactive, declarative behavior directly to HTML using simple attributes, without requiring a build step o…
Appwrite
Appwrite is an open-source backend-as-a-service (BaaS) platform that provides ready-made APIs for authentication, databases, file storage, and serverless funct…
AWS Amplify
AWS Amplify is a set of tools and services for building full-stack web and mobile applications quickly, providing simplified backend integration for authentica…
Expo
Expo is an open-source platform and toolchain built around React Native that simplifies building, testing, and deploying universal apps for iOS, Android, and t…
Qwik
Qwik is a JavaScript web framework built around "resumability" — serializing application state and event-handler wiring directly into HTML so pages become inte…
Redux
Redux is a predictable state-management library for JavaScript apps that stores all application state in a single, read-only store and updates it only through…
Showing 24 of 45.
Cheat Sheets(1)
Interview Questions(3)
SSR vs SSG vs ISR: What Is the Difference?
SSR (server-side rendering) generates the HTML for a page on every request, SSG (static site generation) generates the HTML once at build time and serves the s…
What Are React Server Components?
React Server Components (RSC) are components that render exclusively on the server, ship zero JavaScript to the browser, and can read data or the filesystem di…
What Are the Basics of the Next.js App Router?
The Next.js App Router is a file-system-based routing convention built on the `app/` directory where folders define URL segments, `page.tsx` files make a segme…