The React Framework for the Web
npx create-next-app@latest --typescript
UI library with Next.js framework
npx create-next-app -e https://github.com/shadcn/next-template
A utility-first CSS framework
npm install -D tailwindcss
tRPC is a solution that allows for the creation and consumption of TypeScript-enabled typesafe APIs.
npm install @trpc/server @trpc/client
TypeScript-first schema validation with static type inference
npm install zod
TypeScript ORM
npm install prisma --save-dev
React Hooks for Ethereum https://wagmi.sh
npm i wagmi ethers@^5
- Clone the latest code from Github
- Copy
env.example
to.env.local
- Edit
.env.local
- Run the command
npm install
- Run the command
npx prisma db pusb
to initialize the database - Run the command
npx prisma generate
- Run the command
npm run dev