# Using CLI

# Installing CLI

# If entities files are in javascript

If you have a local typeorm version, make sure it matches the global version we are going to install.

You can install typeorm globally with npm i -g typeorm. You can also choose to use npx typeorm <params> for each command if you prefer not having to install it.

# If entities files are in typescript

This CLI tool is written in javascript and to be run on node. If your entity files are in typescript, you will need to transpile them to javascript before using CLI. You may skip this section if you only use javascript.

You may setup ts-node in your project to ease the operation as follows:

Install ts-node:

npm install ts-node --save-dev
1

Add typeorm command under scripts section in package.json

"scripts": {
    ...
    "typeorm": "typeorm-ts-node-commonjs"
}
1
2
3
4

For ESM projects add this instead:

"scripts": {
    ...
    "typeorm": "typeorm-ts-node-esm"
}
1
2
3
4

If you want to load more modules like module-alias (opens new window) you can add more --require my-module-supporting-register

Then you may run the command like this:

npm run typeorm migration:run
1

If you need to pass parameter with dash to npm script, you will need to add them after --. For example, if you need to generate, the command is like this:

npm run typeorm migration:generate -- -n migrationNameHere
1

# How to read the documentation

To reduce verbosity of the documentation, the following sections are using a globally installed typeorm CLI. Depending on how you installed the CLI, you may replace typeorm at the start of the command, by either npx typeorm or npm run typeorm.

# Initialize a new TypeORM project

You can create a new project with everything already setup:

typeorm init
1

It creates all files needed for a basic project with TypeORM:

  • .gitignore
  • package.json
  • README.md
  • tsconfig.json
  • src/entity/User.ts
  • src/index.ts

Then you can run npm install to install all dependencies. After that, you can run your application by running npm start.

All files are generated in the current directory. If you want to generate them in a special directory you can use --name:

typeorm init --name my-project
1

To specify a specific database you use you can use --database:

typeorm init --database mssql
1

To generate an ESM base project you can use --module esm:

typeorm init --name my-project --module esm
1

You can also generate a base project with Express:

typeorm init --name my-project --express
1

If you are using docker you can generate a docker-compose.yml file using:

typeorm init --docker
1

typeorm init is the easiest and fastest way to setup a TypeORM project.

# Create a new entity

You can create a new entity using CLI:

typeorm entity:create -n User
1

where User is an entity file and class name. Running the command will create a new empty entity in entitiesDir of the project. To set up the entitiesDir of the project you must add it in data source options:

{
    cli: {
        entitiesDir: "src/entity"
    }
}
1
2
3
4
5

Learn more about data source options. If you have a multi-module project structure with multiple entities in different directories you can provide the path to the CLI command where you want to generate an entity:

typeorm entity:create -n User -d src/user/entity
1

Learn more about entities.

# Create a new subscriber

You can create a new subscriber using CLI:

typeorm subscriber:create -n UserSubscriber
1

where UserSubscriber is a subscriber file and class name. Running the following command will create a new empty subscriber in the subscribersDir of the project. To setup subscribersDir you must add it in data source options:

{
    cli: {
        subscribersDir: "src/subscriber"
    }
}
1
2
3
4
5

Learn more about data source options. If you have a multi-module project structure with multiple subscribers in different directories you can provide a path to the CLI command where you want to generate a subscriber:

typeorm subscriber:create -n UserSubscriber -d src/user/subscriber
1

Learn more about Subscribers.

# Create a new migration

You can create a new migration using CLI:

typeorm migration:create -n UserMigration
1

where UserMigration is a migration file and class name. Running the command will create a new empty migration in the migrationsDir of the project. To setup migrationsDir you must add it in data source options:

{
    cli: {
        migrationsDir: "src/migration"
    }
}
1
2
3
4
5

Learn more about data source options. If you have a multi-module project structure with multiple migrations in different directories you can provide a path to the CLI command where you want to generate a migration:

typeorm migration:create -n UserMigration -d src/user/migration
1

Learn more about Migrations.

# Generate a migration from existing table schema

Automatic migration generation creates a new migration file and writes all sql queries that must be executed to update the database.

If no there were no changes generated, the command will exit with code 1.

typeorm migration:generate path/to/Migration -d path/to/datasource
1

The rule of thumb is to generate a migration after each entity change. the -d argument value should specify the path where your DataSource instance is defined. You can specify the path and name of the migration with the first argument.

Learn more about Migrations.

# Run migrations

To execute all pending migrations use following command:

typeorm migration:run
1

Learn more about Migrations.

# Revert migrations

To revert the most recently executed migration use the following command:

typeorm migration:revert
1

This command will undo only the last executed migration. You can execute this command multiple times to revert multiple migrations. Learn more about Migrations.

# Show migrations

To show all migrations and whether they've been run or not use following command:

typeorm migration:show
1

[X] = Migration has been ran

[ ] = Migration is pending/unapplied

This command also returns an error code if there are unapplied migrations.

# Sync database schema

To synchronize a database schema use:

typeorm schema:sync
1

Be careful running this command in production - schema sync may cause data loss if you don't use it wisely. Check which sql queries it will run before running on production.

# Log sync database schema queries without actual running them

To check what sql queries schema:sync is going to run use:

typeorm schema:log
1

# Drop database schema

To completely drop a database schema use:

typeorm schema:drop
1

Be careful with this command on production since it completely removes data from your database.

# Run any SQL query

You can execute any SQL query you want directly in the database using:

typeorm query "SELECT * FROM USERS"
1

# Clear cache

If you are using QueryBuilder caching, sometimes you may want to clear everything stored in the cache. You can do it using the following command:

typeorm cache:clear
1

# Check version

You can check what typeorm version you have installed (both local and global) by running:

typeorm version
1