npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

create-ccc-app

v0.0.4

Published

CLI tool to quickly bootstrap CKB dapps with @ckb-ccc.

Downloads

121

Readme

create-ccc-app

create-ccc-app(Create CCC App) is a CLI tool that helps you quickly bootstrap CKB applications powered by @ckb-ccc SDK. It allows you to generate a project using Next.js or Create React App, with support for both TypeScript and JavaScript.

Getting Started

Basic usage:

npx create-ccc-app@latest [project-name] [options]

Interactive

You can create a new project interactively by running:

npx create-ccc-app@latest
# or
yarn create ccc-app
# or
pnpm create ccc-app
# or
bunx create-ccc-app

You will then be asked the following prompts:

✔ What is your project named? … my-ckb-app
✔ Would you like to use TypeScript? … No / Yes
? Select a framework to use: › - Use arrow-keys. Return to submit.
❯   Create Next App (Next.js) v14
    Create React App

Once you've answered the prompts, a new project will be created with your chosen configuration.

Non-interactive

You can also pass command line arguments to set up a new project non-interactively. See create-ccc-app --help:

npx create-ccc-app@latest [project-name] [options]

The following options are available:

| Options | Description | | --------------------------------------- | --------------------------------------------------------------- | | -h or --help | Show all available options | | -v or --version | Output the version number | | --ts or --typescript | Initialize as a TypeScript project (default) | | --js or --javascript | Initialize as a JavaScript project | | --cra or --react | Initialize as a Create React App(CRA) project. | | --cna14 or --next14 | Initialize as a Create Next App(CNA) v14 project. (default) | | --use-npm | Explicitly tell the CLI to bootstrap the application using npm | | --use-pnpm | Explicitly tell the CLI to bootstrap the application using pnpm | | --use-yarn | Explicitly tell the CLI to bootstrap the application using Yarn | | --use-bun | Explicitly tell the CLI to bootstrap the application using Bun | | --skip-install | Explicitly tell the CLI to skip installing packages |

Examples:

npx create-ccc-app@latest my-ckb-app --ts --next14

This 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.

pnpm create ccc-app my-ckb-app --js --cra

This 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.

yarn create ccc-app my-ckb-app --js --next14 --skip-install

This 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.