{"id":16385381,"url":"https://github.com/ljlm0402/typescript-koa-starter","last_synced_at":"2025-08-04T12:39:35.082Z","repository":{"id":57383843,"uuid":"231327101","full_name":"ljlm0402/typescript-koa-starter","owner":"ljlm0402","description":"🚀 TypeScript Koa Starter","archived":false,"fork":false,"pushed_at":"2020-03-04T01:30:10.000Z","size":106,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-02T06:39:20.373Z","etag":null,"topics":["koa","nodejs","typescript"],"latest_commit_sha":null,"homepage":"http://npm.im/typescript-koa-starter","language":"JavaScript","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/ljlm0402.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}},"created_at":"2020-01-02T07:07:53.000Z","updated_at":"2025-07-07T16:04:27.000Z","dependencies_parsed_at":"2022-09-14T00:52:42.660Z","dependency_job_id":null,"html_url":"https://github.com/ljlm0402/typescript-koa-starter","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ljlm0402/typescript-koa-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ljlm0402%2Ftypescript-koa-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ljlm0402%2Ftypescript-koa-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ljlm0402%2Ftypescript-koa-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ljlm0402%2Ftypescript-koa-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ljlm0402","download_url":"https://codeload.github.com/ljlm0402/typescript-koa-starter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ljlm0402%2Ftypescript-koa-starter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268697065,"owners_count":24292392,"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","status":"online","status_checked_at":"2025-08-04T02:00:09.867Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["koa","nodejs","typescript"],"created_at":"2024-10-11T04:14:21.456Z","updated_at":"2025-08-04T12:39:35.053Z","avatar_url":"https://github.com/ljlm0402.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src='https://github.com/ljlm0402/typescript-koa-starter/raw/images/logo.jpg' border='0' alt='logo' /\u003e\n\n[Koa](https://koajs.com/) with [TypeScript's](https://www.npmjs.com/package/typescript) application generator.\n\n\u003ca href=\"https://www.npmjs.com/package/typescript-koa-starter\" target=\"_blank\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/typescript-koa-starter.svg\" alt=\"NPM Version\" /\u003e\u003c/a\u003e\n\u003ca href=\"https://www.npmjs.com/package/typescript-koa-starter\" target=\"_blank\"\u003e\u003cimg src=\"https://img.shields.io/npm/l/typescript-koa-starter.svg\" alt=\"Package License\" /\u003e\u003c/a\u003e\n\u003ca href=\"https://www.npmjs.com/package/typescript-koa-starter\" target=\"_blank\"\u003e\u003cimg src=\"https://img.shields.io/npm/dm/typescript-koa-starter.svg\" alt=\"NPM Downloads\" /\u003e\u003c/a\u003e\n\n\u003cbr /\u003e\n\n## 🧐 What is it?\n\nCreates a new typescript koa application.\napplication is configured to use TypeScript instead of plain JavaScript. \n\n## 🤔 Why typescript-koa-starter?\n\nNode Js is great for the rapid development of web-projects, but is often neglected because of the lack of\ntype safety. TypeScript solves this issue and (along with its linter file) can even make your code\nmore robust than some other static languages like Java.\n\n## ⚙️ Installation\n\n```sh\n$ npm install -g typescript-koa-starter\n```\n\n## 🚀 Quick Start\n\nThe quickest way to get started is use npx and pass in the name of the project you want to create.\nIf you don't specify a project name, the default _typescript-koa-starter_ will be used instead.\n\n### 1. Create the app\n\n```bash\n$ npx typescript-koa-starter \"project name\"\n```\n\nChoose the template you want. We will create more templates later.\n\nStart your typescript-koa-starter app in development mode at `http://localhost:3000/`\n\n```bash\n$ cd \"project name\" \u0026\u0026 npm run start\n```\n\n## 🎠 Available commands for the server.\n\n- Run the Server in production mode : `npm run start`.\n- Run the Server in development mode : `npm run dev`.\n- Run all unit-tests: `npm run test`.\n- Check for linting errors: `npm run lint`.\n\nYou may need to install [nodemon](https://www.npmjs.com/package/nodemon) separately if you do not currently have it installed on your machine.\n\n## ⛑ Code Structure (default)\n\n```bash\n│\n├── /src\n│   ├── /controllers\n│   │   ├── index.controller.ts\n│   │   └── users.controller.ts\n│   │\n│   ├── app.ts\n│   └── server.ts\n│\n├── .gitignore\n├── jest.config.js\n├── package-lock.json\n├── package.json\n└── tsconfig.json\n```\n\n## 💳 License\n\n[MIT](LICENSE)\n\n## 🤝 Contributors\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fljlm0402%2Ftypescript-koa-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fljlm0402%2Ftypescript-koa-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fljlm0402%2Ftypescript-koa-starter/lists"}