{"id":38000409,"url":"https://github.com/kennarddh/celosiajs-boilerplate","last_synced_at":"2026-01-16T19:10:16.348Z","repository":{"id":38264101,"uuid":"459408553","full_name":"kennarddh/celosiajs-boilerplate","owner":"kennarddh","description":"CelosiaJS Boilerplate","archived":false,"fork":false,"pushed_at":"2025-04-11T21:34:20.000Z","size":2415,"stargazers_count":4,"open_issues_count":9,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-12T07:03:25.638Z","etag":null,"topics":["argon2","boilerplate","celosiajs","docker","eslint","express","jsonwebtoken","jwt","nodejs","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/kennarddh.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":"2022-02-15T03:08:55.000Z","updated_at":"2025-01-18T18:01:43.000Z","dependencies_parsed_at":"2024-05-07T20:42:46.815Z","dependency_job_id":"000b604f-b280-40aa-b377-66af57f2b117","html_url":"https://github.com/kennarddh/celosiajs-boilerplate","commit_stats":null,"previous_names":["kennarddh/express-boilerplate"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/kennarddh/celosiajs-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kennarddh%2Fcelosiajs-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kennarddh%2Fcelosiajs-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kennarddh%2Fcelosiajs-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kennarddh%2Fcelosiajs-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kennarddh","download_url":"https://codeload.github.com/kennarddh/celosiajs-boilerplate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kennarddh%2Fcelosiajs-boilerplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28481524,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: 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":["argon2","boilerplate","celosiajs","docker","eslint","express","jsonwebtoken","jwt","nodejs","typescript"],"created_at":"2026-01-16T19:10:15.623Z","updated_at":"2026-01-16T19:10:16.341Z","avatar_url":"https://github.com/kennarddh.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CelosiaJS Boilerplate\n\nUses [`CelosiaJS`](https://github.com/kennarddh/celosiajs) framework.\n\nPreviously `express-boilerplate`.\n\n## Guide\n\n### Install Dependencies\n\n```bash\nnpm install\n```\n\n### Environment Variables\n\nThe environment variables can be found and modified in the `.env` file. See `.env.example` for default values.\n\n### Project Structure\n\n```\nsrc/\n |--Controllers/          # Controllers\n |--Middlewares/          # Middlewares\n |--Repositories/         # Repositories\n |--Routes/               # Main routes\n |--Services/             # Repositories\n |--Types/                # Typescript types definition\n |--Utils/                # Utility classes and functions\n |--Versions/             # Versions list\n |  |--V{/\\d+/}/          # Version (Example: V1, V2, V3)\n |  |  |--Controllers/    # Controllers\n |  |  |--Routes/         # Routes\n |--App.ts                # CelosiaJS instance\n |--index.ts              # Entry\n```\n\n## Available Scripts\n\nIn the project directory, you can run:\n\n### Start Development Server\n\n```bash\nnpm start\n```\n\n### Build Production\n\nBuild the project for production\n\n```bash\nnpm run build\n```\n\n### Start Production\n\nStart the built project\n\n```bash\nnpm run prod\n```\n\n### Clean\n\nRun all clean script.\n\n```bash\nnpm run clean\n```\n\n### Clean Build\n\nRemoves all the files generated by the build process.\n\n```bash\nnpm run clean:build\n```\n\n### Clean Logs\n\nRemoves all logs.\n\n```bash\nnpm run clean:logs\n```\n\n### Lint Check\n\nFinds linting errors.\n\n```bash\nnpm run lint:check\n```\n\n### Lint Fix\n\nFix linting errors.\n\n```bash\nnpm run lint:fix\n```\n\n### Prettier Check\n\nCheck the code formatting.\n\n```bash\nnpm run prettier:check\n```\n\n### Prettier Fix\n\nFix the code formatting.\n\n```bash\nnpm run prettier:fix\n```\n\n### Types Check\n\nCheck Typescript types.\n\n```bash\nnpm run types:check\n```\n\n### Check\n\nCheck linting, code formatting, Typescript types.\n\n```bash\nnpm run check\n```\n\n### Fix\n\nFix linting, code formatting, and check Typescript types.\n\n```bash\nnpm run fix\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkennarddh%2Fcelosiajs-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkennarddh%2Fcelosiajs-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkennarddh%2Fcelosiajs-boilerplate/lists"}