Skip to content

Commit

Permalink
docs: add create-ccc-app guide to README (#89)
Browse files Browse the repository at this point in the history
- Add comprehensive guide for create-ccc-app CLI tool
- Include installation commands for different package managers
- Format CLI tool name with backticks for better readability
- Rename "Installing" to "Manual Installation"
  • Loading branch information
yixyxiu authored Nov 28, 2024
1 parent 3d13978 commit b345326
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,28 @@ We have done everything!
- [Transfer all native CKB token.](https://live.ckbccc.com/?src=https://raw.githubusercontent.com/ckb-devrel/ccc/refs/heads/master/packages/examples/src/transferAll.ts)
- [Transfer UDT token.](https://live.ckbccc.com/?src=https://raw.githubusercontent.com/ckb-devrel/ccc/refs/heads/master/packages/examples/src/transferUdt.ts)

## Installing
## Quick Start with `create-ccc-app` (Recommended)

To quickly bootstrap a new CCC-based application, you can use our CLI tool `create-ccc-app`:

```bash
# Using npx
npx create-ccc-app@latest my-ccc-app
```

```bash
# Using yarn
yarn create ccc-app my-ccc-app
```

```bash
# Using pnpm
pnpm create ccc-app my-ccc-app
```

Follow the prompts to select your preferred framework template and start building your CCC application.

## Manual Installation

We design CCC for both front-end and back-end developers. You need only one package to fulfil all your needs:

Expand Down

0 comments on commit b345326

Please sign in to comment.