- Node 18+
- PNPM 9+
If you have Node 16+, you can activate PNPM with Corepack:
corepack enable
corepack prepare pnpm@`npm info pnpm --json | jq -r .version` --activateCorepack requires a version to enable, so if you don't have jq installed, you can install it, or just manually get the current version of pnpm with npm info pnpm and use it like this:
corepack prepare pnpm@9.1.0 --activategit clone https://github.com/anza-xyz/wallet-adapter.gitcd wallet-adapter
pnpm installpnpm run buildPlease be patient! This may take a while the first time you do it. Subsequent builds will be incremental and are quite fast.
You can also use pnpm watch to run incremental builds when source files change, enabling hot module reloading.
cd packages/starter/react-ui-starter
pnpm run start
open http://localhost:1234