{"id":15097791,"url":"https://github.com/fadeddexofan/koa-typeorm-starter","last_synced_at":"2025-10-08T02:31:54.083Z","repository":{"id":56070016,"uuid":"135026108","full_name":"fadedDexofan/koa-typeorm-starter","owner":"fadedDexofan","description":"Starter project for using koa with TS and TypeORM","archived":true,"fork":false,"pushed_at":"2020-11-27T09:15:21.000Z","size":390,"stargazers_count":23,"open_issues_count":16,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-22T15:46:04.973Z","etag":null,"topics":["dependency-injection","help-wanted","javascript","jwt","koa","koajs","nodejs","rest-api","routing-controllers","starter-project","typedi","typeorm","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/fadedDexofan.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":"2018-05-27T07:44:23.000Z","updated_at":"2023-11-08T11:49:04.000Z","dependencies_parsed_at":"2022-08-15T12:40:11.810Z","dependency_job_id":null,"html_url":"https://github.com/fadedDexofan/koa-typeorm-starter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fadedDexofan%2Fkoa-typeorm-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fadedDexofan%2Fkoa-typeorm-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fadedDexofan%2Fkoa-typeorm-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fadedDexofan%2Fkoa-typeorm-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fadedDexofan","download_url":"https://codeload.github.com/fadedDexofan/koa-typeorm-starter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235674061,"owners_count":19027515,"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":["dependency-injection","help-wanted","javascript","jwt","koa","koajs","nodejs","rest-api","routing-controllers","starter-project","typedi","typeorm","typescript"],"created_at":"2024-09-25T16:40:31.507Z","updated_at":"2025-10-08T02:31:48.740Z","avatar_url":"https://github.com/fadedDexofan.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/fadedDexofan/koa-typeorm-starter.svg?branch=master)](https://travis-ci.org/fadedDexofan/koa-typeorm-starter)\n[![GitHub issues](https://img.shields.io/github/issues/fadedDexofan/koa-typeorm-starter.svg)](https://github.com/fadedDexofan/koa-typeorm-starter/issues)\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/451cb07dc5e84535999de481b4383d8f)](https://www.codacy.com/app/fadedDexofan/koa-typeorm-starter?utm_source=github.com\u0026utm_medium=referral\u0026utm_content=fadedDexofan/koa-typeorm-starter\u0026utm_campaign=Badge_Grade)\n[![GitHub license](https://img.shields.io/github/license/fadedDexofan/koa-typeorm-starter.svg)](https://github.com/fadedDexofan/koa-typeorm-starter/blob/master/LICENSE)\n\n# koa-typeorm-starter\n\nStarter project for using koa with TypeScript and TypeORM\n\n# Prerequisites\n\n* Node 10 or higher (you can try to manage your versions using [nvm](https://github.com/creationix/nvm))\n* [Yarn](https://yarnpkg.com/lang/en/) package manager or you need to generate `package-lock.json` by yourself\n\n# Installing\n\n* Set up your database and make sure you change the config to your own setup. You can find your database config under `config/ormconfig.json` for your development environment. Change accordingly to your chosen environment (development/test/production)\n\n      {\n        \"type\": \"postgres\",\n        \"host\": \"localhost\",\n        \"port\": 5432,\n        \"username\": \"username\",\n        \"password\": \"password\",\n        \"database\": \"database\",\n        \"logging\": false\n      }\n\n  For more info like supported database driver visit [TypeORM](https://github.com/typeorm/typeorm).\n\n- And start your application by running this in the terminal. This would watch for changes and rebuild(transpiled) your application\n\n      $ npm run debug\n\n  With that, you can see in your terminal and logs that the app is ready to listen for requests. For example:\n\n      [2018-06-04T01:55:18.426Z] [info]: Server started at http://localhost:3000 NODE_ENV=development\n\n  For run in production run this in terminal:\n\n      $ npm run start\n\n  If you want to use pm2 check it's config in `ecosystem.config.json` and the run:\n\n      $ npm run pm2\n\nAlso if you run on production don't forget to check logs in `dirname/logs` to make sure that the startup is successful\n\n# Running the tests\n\nTo run the test suites, type in your terminal\n\n    $ npm run test\n\nOr per test type\n\n    $ npm run e2e:test\n    $ npm run unit:test\n\n# Built With\n\n* [Routing controllers](https://github.com/typestack/routing-controllers) - Web framework\n* [TypeORM](https://github.com/typeorm/typeorm) - Database Management\n* [TypeDI](https://github.com/typestack/typedi) - Dependencies injection\n\n# Contributing\n\nOpen for pull requests!\n\n# Authors\n\n* [fadedDexofan](https://github)\n\nBig thanks to [JM Santos](https://github.com/jmaicaaan) for similar [Express starter](https://github.com/jmaicaaan/express-starter-ts)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffadeddexofan%2Fkoa-typeorm-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffadeddexofan%2Fkoa-typeorm-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffadeddexofan%2Fkoa-typeorm-starter/lists"}