next-dApp
Next.js dApp template with Tailwind CSS, built with Wagmi, TanStack Query, and RainbowKit, written in TypeScript
File Explorer
- commit.md
- global.md
- pr.md
- project.md
- logo.png
- android-chrome-192x192.png
- android-chrome-384x384.png
- apple-touch-icon.png
- favicon-16x16.png
- favicon-32x32.png
- favicon.ico
- index.d.ts
- layout.tsx
- metadata.ts
- not-found.tsx
- page.tsx
- next.tsx
- globals.css
- variables.scss
- ThemeSwitch.tsx
- useEthers.ts
- footer.tsx
- index.tsx
- navbar.tsx
- sidebar.tsx
- exemple.ts
- index.ts
- navigation.tsx
- wagmiConfig.ts
- layout.ts
- addressUtils.ts
- ethersUtils.ts
- AppProviders.tsx
- .gitignore
- .nvmrc
- .prettierignore
- .prettierrc.cjs
- env.example
- eslint.config.mjs
- next.config.js
- package.json
- pnpm-lock.yaml
- postcss.config.js
- README.md
- tsconfig.json
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
pnpm
View Details ▼
pnpm
Fast, disk space efficient package manager for Node.js.
Manage Node.js projects and their module dependencies.
pnpm init
Create a `package.json` file:
pnpm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
pnpm add {{module_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
yarn
View Details ▼
yarn
JavaScript and Node.js package manager alternative.
yarn global add {{module_name}}
Install a module globally:
yarn install
Install all dependencies referenced in the `package.json` file (the `install` is optional):
yarn add {{module_name}}@{{version}}
Install a module and save it as a dependency to the `package.json` file (add `--dev` to save as a dev dependency):
