{"id":28375977,"url":"https://github.com/dev-rio/create-stack-genius","last_synced_at":"2025-11-03T17:02:07.025Z","repository":{"id":250830098,"uuid":"835600324","full_name":"pageton/create-stack-craft","owner":"pageton","description":"create-stack-craft is a CLI tool that simplifies the process of setting up modern web development stacks. With support for Express, Hono, and Prisma, it helps you quickly set up projects with best practices and essential configurations.","archived":false,"fork":false,"pushed_at":"2024-10-02T18:00:39.000Z","size":211,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-16T11:57:27.778Z","etag":null,"topics":["create-stack-craft","developer","developer-tools","express","expressjs","hono","honojs","javascript","lib","library","nodejs","npm","pnpm","stack","stack-craft","template","templates","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pageton.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-07-30T06:56:53.000Z","updated_at":"2024-10-05T09:09:28.000Z","dependencies_parsed_at":"2024-09-17T00:27:10.091Z","dependency_job_id":"c86c2a37-eaae-4a06-a1d9-1fe9f1194ce0","html_url":"https://github.com/pageton/create-stack-craft","commit_stats":null,"previous_names":["dev-rio/create-stack-genius","dev-rio/create-stack-craft","pageton/create-stack-craft"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pageton/create-stack-craft","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pageton%2Fcreate-stack-craft","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pageton%2Fcreate-stack-craft/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pageton%2Fcreate-stack-craft/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pageton%2Fcreate-stack-craft/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pageton","download_url":"https://codeload.github.com/pageton/create-stack-craft/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pageton%2Fcreate-stack-craft/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260647979,"owners_count":23041716,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["create-stack-craft","developer","developer-tools","express","expressjs","hono","honojs","javascript","lib","library","nodejs","npm","pnpm","stack","stack-craft","template","templates","typescript"],"created_at":"2025-05-30T00:04:42.637Z","updated_at":"2025-11-03T17:02:07.018Z","avatar_url":"https://github.com/pageton.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Create Stack Craft\n\n**Create Stack Craft** is a CLI tool to create projects with Express, Hono, and Prisma. This tool helps you quickly set up a new project with the desired framework, language, and Prisma integration.\n\n## Features\n\n- Create projects with Express or Hono.\n- Choose between TypeScript or JavaScript.\n- Optionally include Prisma for database management.\n- Automatically set up the project structure and dependencies.\n\n## Usage\n\nYou can create a new project by running the following command with `npm`:\n\n```bash\nnpm create stack-craft@latest\n```\n\nOr with `pnpm`:\n\n```bash\npnpm create stack-craft@latest\n```\n\n### Interactive Prompts\n\nYou will be prompted to enter the following information:\n\n1. **Project Name**: Enter the name of your project.\n2. **Framework**: Choose between Express or Hono.\n3. **Language**: Choose between TypeScript or JavaScript.\n4. **Include Prisma**: Optionally include Prisma in your project.\n5. **Run npm install**: Optionally run `npm install` after setting up the project.\n\n### Example\n\n```bash\nnpm create stack-craft@latest\n```\n\nor\n\n```bash\npnpm create stack-craft@latest\n```\n\nFollow the prompts to create your project. Once the setup is complete, navigate to your project directory and start the development server:\n\n```bash\ncd my-project\nnpm run dev\n```\n\n## Project Structure\n\nThe generated project structure will look like this:\n\n```\nmy-project/\n├── prisma/\n│   └── schema.prisma (if Prisma is included)\n├── src/\n│   ├── app.ts (or app.js)\n│   └── routes/\n│       └── index.ts (or index.js)\n├── .env (if Prisma is included)\n├── .env.example (if Prisma is included)\n├── package.json\n└── tsconfig.json (if TypeScript is selected)\n```\n\n## Template Files\n\nThe template files for different setups can be found in the [Stack Craft Templates repository](https://github.com/dev-rio/stack-craft-templates/).\n\n## Scripts\n\nThe generated `package.json` will include the following scripts:\n\n- `build`: Compile the TypeScript code (if TypeScript is selected).\n- `start`: Run the compiled code.\n- `lint`: Run ESLint on the project.\n- `db:generate`: Generate Prisma client (if Prisma is included).\n- `db:migrate`: Run Prisma migrations (if Prisma is included).\n- `db:push`: Push the Prisma schema to the database (if Prisma is included).\n- `db:studio`: Open Prisma Studio (if Prisma is included).\n\n## Available Templates\n\n### Frameworks\n\n- **[Express](https://expressjs.com/)**\n- **[Fastify](https://fastify.dev/)**\n- **[Hapi](https://hapi.dev/)**\n- **[Hono](https://hono.dev/)**\n- **[Koa](https://koajs.com/)**\n\n### Additional Tools\n\n- **[Prisma](https://www.prisma.io/)**\n\n## Contributing\n\nContributions are welcome! Please open an issue or submit a pull request for any bugs or feature requests.\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-rio%2Fcreate-stack-genius","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdev-rio%2Fcreate-stack-genius","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdev-rio%2Fcreate-stack-genius/lists"}