
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
create-dynamic-app
Advanced tools
CLI tool to generate sample applications using Dynamic's web3 authentication

A powerful CLI tool to generate starter applications with Dynamic's web3 authentication. Quickly bootstrap projects using your preferred frameworks, libraries, and blockchain networks.
You can use Create Dynamic App directly with npx:
npx create-dynamic-app my-project-name
Or install it globally:
npm install -g create-dynamic-app
create-dynamic-app my-project-name
# Create a new project with interactive prompts
npx create-dynamic-app my-web3-app
# Follow the prompts to select:
# 1. Framework (Next.js, React, React Native)
# 2. Blockchain chains to support
# 3. Library preferences (Viem/Ethers, Wagmi)
The CLI supports the following blockchain networks:
| Chain | Package | Features |
|---|---|---|
| Ethereum | @dynamic-labs/ethereum | Full wallet connection, signing, transactions |
| Solana | @dynamic-labs/solana | Wallet connection, signing, program interactions |
| Flow | @dynamic-labs/flow | Wallet integration and authentication |
| Starknet | @dynamic-labs/starknet | Layer 2 integration and account management |
| Algorand | @dynamic-labs/algorand | Wallet connection and transaction signing |
| Cosmos | @dynamic-labs/cosmos | Multi-chain Cosmos ecosystem support |
| Bitcoin | @dynamic-labs/bitcoin | Basic Bitcoin wallet connectivity |
When including Ethereum support, you can choose:
# To create a specific Next.js project
npx create-dynamic-app my-next-app --framework nextjs --chains ethereum,solana --library viem --wagmi
# To create a specific React project
npx create-dynamic-app my-react-app --framework react --chains ethereum --library ethers
# Generate all variations for testing
npm run generate:all
The generated projects follow best practices for their respective frameworks:
my-next-app/
├── app/ # Next.js app directory
│ ├── components/ # React components
│ ├── page.tsx # Main application page
│ └── layout.tsx # Root layout
├── lib/ # Utility functions
│ ├── dynamic.ts # Dynamic SDK exports
│ ├── providers.tsx # Context providers
│ └── wagmi.ts # Wagmi configuration (if selected)
├── public/ # Static assets
└── package.json # Dependencies and scripts
my-react-app/
├── public/ # Static assets
├── src/ # Source code
│ ├── App.js # Main application component
│ ├── Main.js # Content component
│ ├── Methods.js # Chain-specific utility methods
│ └── index.js # Application entry point
└── package.json # Dependencies and scripts
Issue: Error installing dependencies with npm
Solution: Try using --legacy-peer-deps flag or use yarn:
cd my-dynamic-project
npm install --legacy-peer-deps
Issue: Conflicts with Solana dependencies Solution: The generator adds necessary overrides. If you have issues, manually set:
"overrides": {
"rpc-websockets": "7.10.0",
"@solana/web3.js": "1.91.6"
}
Issue: Environment ID is missing Solution: Replace the placeholder in providers.tsx/App.js:
environmentId: "YOUR_ENVIRONMENT_ID", // Get from Dynamic dashboard
Contributions are welcome! To contribute:
git checkout -b feature/amazing-feature)npm run lint && npm test)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)ISC License - see the LICENSE file for details.
FAQs
CLI tool to generate sample applications using Dynamic's web3 authentication
The npm package create-dynamic-app receives a total of 8 weekly downloads. As such, create-dynamic-app popularity was classified as not popular.
We found that create-dynamic-app demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.