{"id":39455635,"url":"https://github.com/ckb-devrel/create-ccc-app","last_synced_at":"2026-01-18T04:35:17.633Z","repository":{"id":263431342,"uuid":"890381322","full_name":"ckb-devrel/create-ccc-app","owner":"ckb-devrel","description":"Build a new CKB application using 'npx create-ccc-app'","archived":false,"fork":false,"pushed_at":"2024-12-21T09:24:59.000Z","size":218,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-11-23T23:03:59.506Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ckb-devrel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-18T13:26:24.000Z","updated_at":"2024-12-21T09:25:02.000Z","dependencies_parsed_at":"2024-11-25T03:59:26.617Z","dependency_job_id":null,"html_url":"https://github.com/ckb-devrel/create-ccc-app","commit_stats":null,"previous_names":["ckbfansdao/create-ccc-app","ckb-devrel/create-ccc-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ckb-devrel/create-ccc-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ckb-devrel%2Fcreate-ccc-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ckb-devrel%2Fcreate-ccc-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ckb-devrel%2Fcreate-ccc-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ckb-devrel%2Fcreate-ccc-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ckb-devrel","download_url":"https://codeload.github.com/ckb-devrel/create-ccc-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ckb-devrel%2Fcreate-ccc-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28529807,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-18T04:35:17.547Z","updated_at":"2026-01-18T04:35:17.628Z","avatar_url":"https://github.com/ckb-devrel.png","language":"JavaScript","readme":"# create-ccc-app\n\n`create-ccc-app`(Create CCC App) is a CLI tool that helps you quickly bootstrap `CKB` applications powered by [@ckb-ccc](https://github.com/ckb-devrel/ccc) SDK. It allows you to generate a project using **`Next.js`** or **`Create React App`**, with support for both **`TypeScript`** and **`JavaScript`**.\n\n## Getting Started\n\nBasic usage:\n\n```bash filename=\"Terminal\"\nnpx create-ccc-app@latest [project-name] [options]\n```\n\n### Interactive\n\nYou can create a new project interactively by running:\n\n```bash\nnpx create-ccc-app@latest\n# or\nyarn create ccc-app\n# or\npnpm create ccc-app\n# or\nbunx create-ccc-app\n```\n\nYou will then be asked the following prompts:\n\n```bash\n✔ What is your project named? … my-ckb-app\n✔ Would you like to use TypeScript? … No / Yes\n? Select a framework to use: › - Use arrow-keys. Return to submit.\n❯   Create Next App (Next.js) v14\n    Create React App\n```\n\nOnce you've answered the prompts, a new project will be created with your chosen configuration.\n\n### Non-interactive\n\nYou can also pass command line arguments to set up a new project\nnon-interactively. See `create-ccc-app --help`:\n\n```bash filename=\"Terminal\"\nnpx create-ccc-app@latest [project-name] [options]\n```\n\nThe following options are available:\n\n| Options                                 | Description                                                     |\n| --------------------------------------- | --------------------------------------------------------------- |\n| `-h` or `--help`                        | Show all available options                                      |\n| `-v` or `--version`                     | Output the version number                                       |\n| `--ts` or `--typescript`                | Initialize as a TypeScript project (default)                    |\n| `--js` or `--javascript`                | Initialize as a JavaScript project                              |\n| `--cra` or `--react`                    | Initialize as a Create React App(CRA) project.                  |\n| `--cna14` or `--next14`                 | Initialize as a Create Next App(CNA) v14 project. (default)     |\n| `--use-npm`                             | Explicitly tell the CLI to bootstrap the application using npm  |\n| `--use-pnpm`                            | Explicitly tell the CLI to bootstrap the application using pnpm |\n| `--use-yarn`                            | Explicitly tell the CLI to bootstrap the application using Yarn |\n| `--use-bun`                             | Explicitly tell the CLI to bootstrap the application using Bun  |\n| `--skip-install`                        | Explicitly tell the CLI to skip installing packages             |\n\nExamples:\n\n```bash filename=\"Terminal\"\nnpx create-ccc-app@latest my-ckb-app --ts --next14\n```\nThis command creates a new **`Next.js 14`** project named **`my-ckb-app`** using **`TypeScript`** and installs the relevant dependencies for the project using **`npm`** as the package manager.\n\n```bash filename=\"Terminal\"\npnpm create ccc-app my-ckb-app --js --cra\n```\nThis command creates a new **`Create React App`** project named **`my-ckb-app`** using **`JavaScript`** and installs the relevant dependencies for the project using **`pnpm`** as the package manager.\n\n```bash filename=\"Terminal\"\nyarn create ccc-app my-ckb-app --js --next14 --skip-install\n```\nThis command creates a new **`Next.js 14`** project named **`my-ckb-app`** using **`JavaScript`**, specifies **`yarn`** as the default package manager, and skips installing the dependencies.\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fckb-devrel%2Fcreate-ccc-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fckb-devrel%2Fcreate-ccc-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fckb-devrel%2Fcreate-ccc-app/lists"}