Go to file
2018-04-14 14:23:18 +02:00
bin readme, preparation to npm publish 2017-07-20 23:16:55 +02:00
src upgraded supported types to types supported by typeorm@0.2.0 2018-04-14 14:23:18 +02:00
test upgraded supported types to types supported by typeorm@0.2.0 2018-04-14 14:23:18 +02:00
.editorconfig Added editorconfig 2017-12-30 16:04:10 +01:00
.gitignore gulp tasks 2018-03-18 20:06:46 +01:00
.npmignore added some files to .npmignore 2018-03-18 22:40:16 +01:00
.prettierrc added prettier 2018-02-04 23:38:43 +01:00
.travis.yml fixing greenkeeper-lockfile;updating package-lock 2018-04-01 22:49:09 +02:00
codecov.yml Formatting existing code 2017-12-31 17:28:41 +01:00
docker-compose.yml changing docker mssql image version to newer(less memory consumption) 2018-02-25 17:50:23 +01:00
gulpfile.js prettier on src 2018-03-18 20:26:48 +01:00
LICENSE Initial commit 2017-03-23 20:52:39 +01:00
package-lock.json upgrading to typeorm@0.2.0-alpha.44 2018-04-11 21:03:02 +02:00
package.json upgrading to typeorm@0.2.0-alpha.44 2018-04-11 21:03:02 +02:00
README.md Update README.md --output values 2018-01-21 13:25:10 +02:00
tsconfig.json Formatting existing code 2017-12-31 17:28:41 +01:00
typings.json Formatting existing code 2017-12-31 17:28:41 +01:00

typeorm-model-generator

Greenkeeper badge Build Status npm version codecov

Generates models for TypeORM from existing databases. Suported db engines:

  • Microsoft SQL Server
  • PostgreSQL
  • MySQL
  • MariaDB

Installation

Global module

To install module globally simply type npm i -g typeorm-model-generator in your console.

Npx way

Thanks to npx you can use npm modules without polluting global installs. So nothing to do here :)

To use npx you need to use npm at version at least 5.2.0. Try updating your npm by npm i -g npm

Usage

Usage: typeorm-model-generator -h <host> -d <database> -p [port] -u <user> -x
[password] -e [engine]

Options:
  -h, --host      IP adress/Hostname for database server.             [required]
  -d, --database  Database name.                                      [required]
  -u, --user      Username for database server.                       [required]
  -x, --pass      Password for database server.                       [required]
  -p, --port      Port number for database server.
  -e, --engine    Database engine.
           [choices: "mssql", "postgres", "mysql", "mariadb"] [default: "mssql"]
  -o, --output    Where to place generated models.
  -s, --schema    Schema name to create model from. Only for mssql and postgres.
  --ssl                                               [boolean] [default: false]
  --noConfig      Doesn't create tsconfig.json and ormconfig.json
                                                      [boolean] [default: false]
  --cf, --case-file      Convert file names to specified case
                 [choices: "pascal", "param", "camel", "none"] [default: "none"]
  --ce, --case-entity    Convert class names to specified case
                          [choices: "pascal", "camel", "none"] [default: "none"]
  --cp, --case-property  Convert property names to specified case
                          [choices: "pascal", "camel", "none"] [default: "none"]

Examples

  • Creating model from local MSSQL database
    • Global module
      typeorm-model-generator -h localhost -d tempdb -u sa -x !Passw0rd -e mssql -o .
      
    • Npx Way
      npx typeorm-model-generator -h localhost -d tempdb -u sa -x !Passw0rd -e mssql -o .
      
  • Creating model from local Postgres database, public schema with ssl connection
    • Global module
      typeorm-model-generator -h localhost -d postgres -u postgres -x !Passw0rd -e postgres -o . -s public --ssl
      
    • Npx Way
      npx typeorm-model-generator -h localhost -d postgres -u postgres -x !Passw0rd -e postgres -o . -s public --ssl