{"id":15174009,"url":"https://github.com/pageton/stack-craft-templates","last_synced_at":"2026-01-26T02:32:19.786Z","repository":{"id":251063609,"uuid":"836277076","full_name":"pageton/stack-craft-templates","owner":"pageton","description":"Central repository for Create Stack Craft CLI templates. Offers ready-to-use project starters for Express, Fastify, Hono, and Koa, with TypeScript/JavaScript options and Prisma integration. Streamlines web development setup. Contributions welcome!","archived":false,"fork":false,"pushed_at":"2024-07-31T17:28:59.000Z","size":1972,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-30T14:57:35.046Z","etag":null,"topics":["creat-stack-craft","express","fastify","hapi","hono","javascript","koa","lib","nodejs","npm","prisma","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-31T14:04:29.000Z","updated_at":"2024-07-31T17:29:02.000Z","dependencies_parsed_at":"2024-07-31T18:01:52.219Z","dependency_job_id":"6a4434b2-92c8-4517-94dc-93f730c5a365","html_url":"https://github.com/pageton/stack-craft-templates","commit_stats":null,"previous_names":["dev-rio/stack-craft-templates"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pageton/stack-craft-templates","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pageton%2Fstack-craft-templates","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pageton%2Fstack-craft-templates/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pageton%2Fstack-craft-templates/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pageton%2Fstack-craft-templates/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pageton","download_url":"https://codeload.github.com/pageton/stack-craft-templates/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pageton%2Fstack-craft-templates/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28765053,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T02:25:41.078Z","status":"ssl_error","status_checked_at":"2026-01-26T02:24:28.809Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["creat-stack-craft","express","fastify","hapi","hono","javascript","koa","lib","nodejs","npm","prisma","stack","stack-craft","template","templates","typescript"],"created_at":"2024-09-27T11:22:52.838Z","updated_at":"2026-01-26T02:32:19.764Z","avatar_url":"https://github.com/pageton.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Stack Craft Templates\n\nThis repository contains templates for various backend frameworks and Prisma integration. These templates are designed to help you quickly set up a new project with your preferred framework and configuration.\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## Usage\n\nTo use these templates, follow the instructions provided by your CLI tool ([create-stack-craft](https://github.com/dev-rio/create-stack-craft)) to select and download the appropriate template for your project.\n\n### Example Structure\n\nEach template follows a similar directory structure, supporting both JavaScript and TypeScript. Below is an example of how the templates are organized:\n\n```\ntemplates/\n├── express/\n│   ├── javascript/\n│   │   ├── src/\n│   │   │   ├── index.js\n│   │   │   └── ... (other files)\n│   │   └── package.json\n│   ├── typescript/\n│   │   ├── src/\n│   │   │   ├── index.ts\n│   │   │   └── ... (other files)\n│   │   ├── package.json\n│   │   └── tsconfig.json\n├── fastify/\n│   ├── javascript/\n│   │   ├── src/\n│   │   │   ├── index.js\n│   │   │   └── ... (other files)\n│   │   └── package.json\n│   ├── typescript/\n│   │   ├── src/\n│   │   │   ├── index.ts\n│   │   │   └── ... (other files)\n│   │   ├── package.json\n│   │   └── tsconfig.json\n├── hapi/\n│   ├── javascript/\n│   │   ├── src/\n│   │   │   ├── index.js\n│   │   │   └── ... (other files)\n│   │   └── package.json\n│   ├── typescript/\n│   │   ├── src/\n│   │   │   ├── index.ts\n│   │   │   └── ... (other files)\n│   │   ├── package.json\n│   │   └── tsconfig.json\n├── hono/\n│   ├── javascript/\n│   │   ├── src/\n│   │   │   ├── index.js\n│   │   │   └── ... (other files)\n│   │   └── package.json\n│   ├── typescript/\n│   │   ├── src/\n│   │   │   ├── index.ts\n│   │   │   └── ... (other files)\n│   │   ├── package.json\n│   │   └── tsconfig.json\n├── koa/\n│   ├── javascript/\n│   │   ├── src/\n│   │   │   ├── index.js\n│   │   │   └── ... (other files)\n│   │   └── package.json\n│   ├── typescript/\n│   │   ├── src/\n│   │   │   ├── index.ts\n│   │   │   └── ... (other files)\n│   │   ├── package.json\n│   │   └── tsconfig.json\n├── prisma/\n│   ├── schema.prisma\n│   ├── .env\n│   └── .env.example\n└── README.md\n```\n\n## Adding a New Template\n\nIf you wish to add a new template, follow these steps:\n\n1. Create a new directory under the `templates` directory with the name of the framework/tool.\n2. Add subdirectories for `javascript` and `typescript` with the necessary files and configurations.\n3. Update this README file to include the new template in the list above.\n\n## Contributing\n\nWe welcome contributions! If you have suggestions or improvements, please open an issue or submit a pull request.\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpageton%2Fstack-craft-templates","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpageton%2Fstack-craft-templates","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpageton%2Fstack-craft-templates/lists"}