MikroORM¶
This recipe is here to help users getting started with MikroORM in Nest. MikroORM is the TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. It is a great alternative to TypeORM and migration from TypeORM should be fairly easy. The complete documentation on MikroORM can be found here.
Info
@mikro-orm/nestjs
is a third party package and is not managed by the NestJS core team. Please, report any issues found with the library in the appropriate repository.
Installation¶
Easiest way to integrate MikroORM to Nest is via @mikro-orm/nestjs
module.
Simply install it next to Nest, MikroORM and underlying driver:
MikroORM also supports postgres
, sqlite
, and mongo
. See the official docs for all drivers.
Once the installation process is completed, we can import the MikroOrmModule
into the root AppModule
.
The forRoot()
method accepts the same configuration object as init()
from the MikroORM package. Check this page for the complete configuration documentation.
Alternatively we can configure the CLI by creating a configuration file mikro-orm.config.ts
and then call the forRoot()
without any arguments. This won't work when you use a build tools that use tree shaking.
Afterward, the EntityManager
will be available to inject across entire project (without importing any module elsewhere).
Info
Notice that the EntityManager
is imported from the @mikro-orm/driver
package, where driver is mysql
, sqlite
, postgres
or what driver you are using. In case you have @mikro-orm/knex
installed as a dependency, you can also import the EntityManager
from there.
Repositories¶
MikroORM supports the repository design pattern. For every entity we can create a repository. Read the complete documentation on repositories here. To define which repositories should be registered in the current scope you can use the forFeature()
method. For example, in this way:
Info
You should not register your base entities via forFeature()
, as there are no
repositories for those. On the other hand, base entities need to be part of the list in
forRoot()
(or in the ORM config in general).
and import it into the root AppModule
:
In this way we can inject the PhotoRepository
to the PhotoService
using the @InjectRepository()
decorator:
Using custom repositories¶
When using custom repositories, we can get around the need for @InjectRepository()
decorator by naming our repositories the same way as getRepositoryToken()
method do:
In other words, as long as we name the repository same was as the entity is called,
appending Repository
suffix, the repository will be registered automatically in
the Nest DI container.
As the custom repository name is the same as what getRepositoryToken()
would
return, we do not need the @InjectRepository()
decorator anymore:
Load entities automatically¶
Info
autoLoadEntities
option was added in v4.1.0
Manually adding entities to the entities array of the connection options can be tedious. In addition, referencing entities from the root module breaks application domain boundaries and causes leaking implementation details to other parts of the application. To solve this issue, static glob paths can be used.
Note, however, that glob paths are not supported by webpack, so if you are building
your application within a monorepo, you won't be able to use them. To address this
issue, an alternative solution is provided. To automatically load entities, set the
autoLoadEntities
property of the configuration object (passed into the forRoot()
method) to true
, as shown below:
With that option specified, every entity registered through the forFeature()
method will be automatically added to the entities array of the configuration
object.
Info
Note that entities that aren't registered through the forFeature()
method, but
are only referenced from the entity (via a relationship), won't be included by way of the
autoLoadEntities
setting.
Info
Using autoLoadEntities
also has no effect on the MikroORM CLI - for that we
still need CLI config with the full list of entities. On the other hand, we can use globs there, as the CLI won't go thru webpack.
Request scoped handlers in queues¶
Info
@UseRequestContext()
decorator was added in v4.1.0
As mentioned in the docs, we need a clean state for each request. That is handled automatically thanks to the RequestContext
helper registered via middleware.
But middlewares are executed only for regular HTTP request handles, what if we need a request scoped method outside of that? One example of that is queue handlers or scheduled tasks.
We can use the @UseRequestContext()
decorator. It requires you to first inject the
MikroORM
instance to current context, it will be then used to create the context
for you. Under the hood, the decorator will register new request context for your
method and execute it inside the context.
Using AsyncLocalStorage
for request context¶
By default, the domain
api is used in the RequestContext
helper. Since @mikro-orm/core@4.0.3
,
you can use the new AsyncLocalStorage
too, if you are on up to date node version:
Testing¶
The @mikro-orm/nestjs
package exposes getRepositoryToken()
function that returns prepared token based on a given entity to allow mocking the repository.
Example¶
A real world example of NestJS with MikroORM can be found here