Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fadeddexofan/koa-typeorm-starter
Starter project for using koa with TS and TypeORM
https://github.com/fadeddexofan/koa-typeorm-starter
dependency-injection help-wanted javascript jwt koa koajs nodejs rest-api routing-controllers starter-project typedi typeorm typescript
Last synced: about 1 month ago
JSON representation
Starter project for using koa with TS and TypeORM
- Host: GitHub
- URL: https://github.com/fadeddexofan/koa-typeorm-starter
- Owner: fadedDexofan
- License: mit
- Archived: true
- Created: 2018-05-27T07:44:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-11-27T09:15:21.000Z (almost 4 years ago)
- Last Synced: 2024-10-01T06:05:24.457Z (about 1 month ago)
- Topics: dependency-injection, help-wanted, javascript, jwt, koa, koajs, nodejs, rest-api, routing-controllers, starter-project, typedi, typeorm, typescript
- Language: TypeScript
- Homepage:
- Size: 381 KB
- Stars: 23
- Watchers: 1
- Forks: 3
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/fadedDexofan/koa-typeorm-starter.svg?branch=master)](https://travis-ci.org/fadedDexofan/koa-typeorm-starter)
[![GitHub issues](https://img.shields.io/github/issues/fadedDexofan/koa-typeorm-starter.svg)](https://github.com/fadedDexofan/koa-typeorm-starter/issues)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/451cb07dc5e84535999de481b4383d8f)](https://www.codacy.com/app/fadedDexofan/koa-typeorm-starter?utm_source=github.com&utm_medium=referral&utm_content=fadedDexofan/koa-typeorm-starter&utm_campaign=Badge_Grade)
[![GitHub license](https://img.shields.io/github/license/fadedDexofan/koa-typeorm-starter.svg)](https://github.com/fadedDexofan/koa-typeorm-starter/blob/master/LICENSE)# koa-typeorm-starter
Starter project for using koa with TypeScript and TypeORM
# Prerequisites
* Node 10 or higher (you can try to manage your versions using [nvm](https://github.com/creationix/nvm))
* [Yarn](https://yarnpkg.com/lang/en/) package manager or you need to generate `package-lock.json` by yourself# Installing
* 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)
{
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "username",
"password": "password",
"database": "database",
"logging": false
}For more info like supported database driver visit [TypeORM](https://github.com/typeorm/typeorm).
- And start your application by running this in the terminal. This would watch for changes and rebuild(transpiled) your application
$ npm run debug
With that, you can see in your terminal and logs that the app is ready to listen for requests. For example:
[2018-06-04T01:55:18.426Z] [info]: Server started at http://localhost:3000 NODE_ENV=development
For run in production run this in terminal:
$ npm run start
If you want to use pm2 check it's config in `ecosystem.config.json` and the run:
$ npm run pm2
Also if you run on production don't forget to check logs in `dirname/logs` to make sure that the startup is successful
# Running the tests
To run the test suites, type in your terminal
$ npm run test
Or per test type
$ npm run e2e:test
$ npm run unit:test# Built With
* [Routing controllers](https://github.com/typestack/routing-controllers) - Web framework
* [TypeORM](https://github.com/typeorm/typeorm) - Database Management
* [TypeDI](https://github.com/typestack/typedi) - Dependencies injection# Contributing
Open for pull requests!
# Authors
* [fadedDexofan](https://github)
Big thanks to [JM Santos](https://github.com/jmaicaaan) for similar [Express starter](https://github.com/jmaicaaan/express-starter-ts)