{"id":32778514,"url":"https://github.com/jamg44/typescript-starter","last_synced_at":"2026-05-07T09:32:43.212Z","repository":{"id":322240701,"uuid":"1088250465","full_name":"jamg44/typescript-starter","owner":"jamg44","description":"🚀 Node.js Typescript starter","archived":false,"fork":false,"pushed_at":"2025-11-03T14:22:28.000Z","size":68,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-03T16:14:38.910Z","etag":null,"topics":["biome","dotenv","node","node-js","nvm","pino","typescript","vitest","zod"],"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/jamg44.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-02T15:59:22.000Z","updated_at":"2025-11-03T14:22:32.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jamg44/typescript-starter","commit_stats":null,"previous_names":["jamg44/node-typescript-starter","jamg44/typescript-starter"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/jamg44/typescript-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamg44%2Ftypescript-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamg44%2Ftypescript-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamg44%2Ftypescript-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamg44%2Ftypescript-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jamg44","download_url":"https://codeload.github.com/jamg44/typescript-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamg44%2Ftypescript-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32731338,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-07T02:14:30.463Z","status":"ssl_error","status_checked_at":"2026-05-07T02:14:29.405Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["biome","dotenv","node","node-js","nvm","pino","typescript","vitest","zod"],"created_at":"2025-11-04T15:01:07.255Z","updated_at":"2026-05-07T09:32:43.194Z","avatar_url":"https://github.com/jamg44.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Node.js Typescript Starter\n\n## 🌟 Introduction\n\nWelcome to Node.js TypeScript Boilerplate 2025 – a simple and ready-to-use starting point for building backend services with TypeScript.\n\nBased on: [express-typescript](https://github.com/edwinhern/express-typescript)\n\n## 💡 Why We Made This\n\nThis starter kit helps you:\n\n- ✨ Start new projects faster\n- 📊 Write clean, consistent code\n- ⚡ Build things quickly\n- 🛡️ Follow best practices for security and testing\n\n## 🚀 What's Included\n\n- 📁 Well-organized folders: Files grouped by feature so you can find things easily\n- 💨 Fast development: Quick code running with `tsx` and error checking with `tsc`\n- 🌐 Latest Node.js: Uses the newest stable Node.js version from `.nvmrc`\n- 🔧 Safe settings: Environment settings checked with Zod to prevent errors\n- 🔗 Short import paths: Clean code with easy imports using path shortcuts\n- 🔄 Auto-updates: Keeps dependencies up-to-date with Renovate\n- 📊 Easy tracking: Built-in logging with `pino`\n- 🧪 Ready-to-test: Testing tools with Vitest already set up\n- ✅ Clean code: Consistent coding style with `Biomejs`\n- 🐳 Easy deployment: Ready for Docker containers\n- 📝 Input checking: Validation using Zod\n\n## 🛠️ Getting Started\n\n### Step-by-Step Guide\n\n#### Step 1: 🚀 Initial Setup\n\nTo create an app, follow these steps:\n\n```sh\nnpx degit jamg44/typescript-starter my-app\ncd my-app\npnpm install\n# Optional, setup your git repo:\ngit init \u0026\u0026 git add . \u0026\u0026 git commit -m 'feat: initial commit'\n```\n\n#### Step 2: ⚙️ Environment Configuration\n\n- Create `.env`: Copy `.env.template` to `.env`\n- Update `.env`: Fill in necessary environment variables\n\n#### Step 3: 🏃‍♂️ Running the Project\n\n- Development Mode: `pnpm dev`\n- Building: `pnpm build`\n- Production Mode: Set `NODE_ENV=\"production\"` in `.env` then `pnpm build \u0026\u0026 pnpm start:prod`\n\n## 🤝 Feedback and Contributions\n\nWe'd love to hear your feedback and suggestions for further improvements. Feel free to contribute and join us in making backend development cleaner and faster!\n\n🎉 Happy coding!\n\n## 📁 Folder Structure\n\n```code\n├── biome.json\n├── Dockerfile\n├── LICENSE\n├── package.json\n├── pnpm-lock.yaml\n├── README.md\n├── src\n│   ├── common\n│   │   └── utils\n│   │       ├── __tests__\n│   │       ├── commonValidation.ts\n│   │       ├── envConfig.ts\n│   │       └── logger.ts\n│   └── index.ts\n├── tsconfig.json\n└── vite.config.mts\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamg44%2Ftypescript-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjamg44%2Ftypescript-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamg44%2Ftypescript-starter/lists"}