Scaffold a new project from a cur8d template.
# Interactive
npx create-cur8d
# With arguments
npx create-cur8d my-app --template tsx
npx create-cur8d my-api --template py| Template | Stack | Repo |
|---|---|---|
tsx |
TypeScript / Next.js | cur8d/typescript |
py |
Python | cur8d/python |
pnpm installYou can run the script locally in a few ways:
Run the script directly from source using ts-node:
# Interactive mode
pnpm run dev
# Or with arguments (pass args after --)
pnpm run dev -- my-app --template tsxBuild the project and run the output JavaScript file using Node:
pnpm run build
node dist/index.js my-app --template tsxIf you have mise installed, you can use the configured shell aliases:
# Install dependencies
i
# Run in development mode
d
# Build the project
bMIT © cur8d