Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A basic React/NextJS project showing how to use the Flow Client Library (FCL)
FCL Next.js Quickstart is a boilerplate starter repository that shows Next.js developers how to integrate the Flow Client Library (FCL) for blockchain authentication and transactions on the Flow network.
FCL Next.js Quickstart is a basic React/NextJS project that demonstrates using the Flow Client Library (FCL) in a Next.js application. It takes a Next.js project scaffold and adds FCL configuration, a login flow, and example UI components, producing a deployable web app that runs on the Flow testnet or against a local Flow emulator. The repository is maintained by GitHub user muttoni, who also publishes an equivalent SvelteKit example.
npm run build followed by npm run start deploys the app on the Flow testnet without extra configuration.flow emulator start --dev-wallet, deploy contracts with flow project deploy --network emulator, and run the development server via npm run dev.Getting started requires Node and npm (or pnpm/yarn). First, install dependencies and, if developing locally, start the Flow emulator with flow emulator start --dev-wallet and deploy contracts with flow project deploy --network emulator. Then launch npm run dev to open the app in your browser; for testnet, npm run build and npm run start are used instead.
