0.0.6 • Published 4 years ago

angular-typeorm v0.0.6

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Angular TypeOrm Module


Usage:

Install in your existing project through package manager

npm install --save angular-typeorm@latest
# Or 
yarn add angular-typeorm@latest

Or add the following in your package.json

"dependencies": {
    "angular-typeorm": "^0.0.1"
}

and run npm install Or yarn to install dependencies.

Initialize TypeOrm Module:

Import AngularTypeormModule in your app module and provide ConnectionOptions.

import { AngularTypeormModule } from 'angular-typeorm';

@NgModule({
  declarations: [],
  imports: [
    AngularTypeormModule.forRoot({
        // Put your typeorm
        // connection options here  
    })
  ],
  providers: [],
  bootstrap: [AppComponent]
})

export class AppModule {}
0.0.6

4 years ago

0.0.5

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago