Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/etienne-bechara/nestjs-orm
ORM Module Component for NestJS Projects
https://github.com/etienne-bechara/nestjs-orm
mikro-orm nestjs orm
Last synced: 1 day ago
JSON representation
ORM Module Component for NestJS Projects
- Host: GitHub
- URL: https://github.com/etienne-bechara/nestjs-orm
- Owner: etienne-bechara
- License: mit
- Created: 2021-03-27T14:26:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-12T03:49:51.000Z (about 2 years ago)
- Last Synced: 2024-12-15T12:18:34.842Z (10 days ago)
- Topics: mikro-orm, nestjs, orm
- Language: TypeScript
- Homepage:
- Size: 1.21 MB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
⚠️ **Disclaimer**: This project is opinionated and intended for personal use.
---
# NestJS ORM Component
This package acts as a plugin for [NestJS Core Components](https://github.com/etienne-bechara/nestjs-core) and adds ORM capabilities including service functionalities and controllers.
Supports MongoDB, MySQL, MariaDB, PostgreSQL and SQLite.
## Installation
The following instructions considers you already have a project set up with [@bechara/nestjs-core](https://www.npmjs.com/package/@bechara/nestjs-core).
If not, please refer to documentation above before proceeding.
1\. Install the new necessary dependencies:
```
npm i @bechara/nestjs-orm
```2\. Add these example variables to your `.env` (adjust accordingly):
```bash
# Standard connection
ORM_TYPE='mysql'
ORM_HOST='localhost'
ORM_PORT=3306
ORM_USERNAME='root'
ORM_PASSWORD=''
ORM_DATABASE='test'# SSL options
ORM_SERVER_CA=''
ORM_CLIENT_CERTIFICATE=''
ORM_CLIENT_KEY=''
```It is recommended that you have a local database in order to test connectivity.
3\. Import `OrmModule` and `OrmConfig` into you boot script and configure asynchronously:
```ts
import { AppEnvironment, AppModule } from '@bechara/nestjs-core';
import { OrmConfig. OrmModule } from '@bechara/nestjs-orm';void AppModule.bootServer({
configs: [ OrmConfig ],
imports: [
OrmModule.registerAsync({
inject: [ OrmConfig ],
useFactory: (ormConfig: OrmConfig) => ({
type: ormConfig.ORM_TYPE,
host: ormConfig.ORM_HOST,
port: ormConfig.ORM_PORT,
dbName: ormConfig.ORM_DATABASE,
user: ormConfig.ORM_USERNAME,
password: ormConfig.ORM_PASSWORD,
pool: { min: 1, max: 25 },
sync: {
auto: true,
controller: true,
safe: ormConfig.NODE_ENV === AppEnvironment.PRODUCTION,
},
// SSL configuration (optional)
driverOptions: {
connection: {
ssl: {
ca: Buffer.from(ormConfig.ORM_SERVER_CA, 'base64'),
cert: Buffer.from(ormConfig.ORM_CLIENT_CERTIFICATE, 'base64'),
key: Buffer.from(ormConfig.ORM_CLIENT_KEY, 'base64'),
},
},
}
}),
}),
],
providers: [ OrmConfig ],
exports: [ OrmConfig, OrmModule ],
});
```If you wish to change how environment variables are injected you may provide your own configuration instead of using the built-in `OrmConfig`.
4\. Before booting the application, create at least one entity inside your project source. Refer to **Usage** section below for further details.
## Usage
We may simplify the process of adding data storage functionality as:
- Create the entity definition (table, columns and relationships)
- Create its service (repository abstraction extending provided one)
- Create its controller (extending provided one)### Creating an Entity Definition
Please refer to the official [Defining Entities](https://mikro-orm.io/docs/defining-entities) documentation from MikroORM.
### Creating an Entity Repository
In order to create a new entity repository, extend the provided abstract repository from this package.
Then, you should call its super method passing this instance as well as an optional object with further customizations.
Example:
```ts
import { EntityManager, EntityName, OrmRepository, Repository } from '@bechara/nestjs-orm';import { User } from './user.entity';
@Repository(User)
export class UserRepository extends OrmRepository {public constructor(
protected readonly entityManager: EntityManager,
protected readonly entityName: EntityName,
) {
super(entityManager, entityName, {
defaultUniqueKey: [ 'name', 'surname' ],
});
}}
```At this point, an injectable `UserRepository` will be available throughout the application, exposing extra ORM functionalities.
```ts
// Read operations
populate(): Promise;
readBy(): Promise;
readById(): Promise;
readByIdOrFail(): Promise;
readUnique(): Promise;
readUniqueOrFail(): Promise;
countBy(): Promise;
readPaginatedBy(): Promise>;// Create operations
build(): Entity[];
buildOne(): Entity;
create(): Promise;
createOne(): Promise;// Update operations
update(): Promise;
updateBy(): Promise;
updateById(): Promise;
updateOne(): Promise;
upsert(): Promise;
upsertOne(): Promise;// Async manipulation (optional)
commit(): Promise;
```### Creating an Subscriber
If you would like to create hooks when triggering certain operations, it is possible by defining an injectable subscriber:
```ts
import { Injectable, LoggerService } from '@bechara/nestjs-core';
import { EntityManager, OrmSubscriber, OrmSubscriberParams } from '@bechara/nestjs-orm';import { User } from './user.entity';
@Injectable()
export class UserSubscriber implements OrmSubscriber {public constructor(
private readonly entityManager: EntityManager,
private readonly loggerService: LoggerService,
) {
entityManager.getEventManager().registerSubscriber(this);
}/**
* Before update hook example.
* @param params
*/
public beforeUpdate(params: OrmSubscriberParams): Promise {
const { changeSet } = params;
this.loggerService.warning('beforeUpdate: changeSet', changeSet);
return;
}}
```### Creating an Entity Controller
Finally, expose a controller injecting your repository as dependency to allow manipulation through HTTP requests.
If you are looking for CRUD functionality you may copy exactly as the template below.
Example:
```ts
import { Body, Controller, Delete, Get, Param, Patch, Post, Put, Query } from '@bechara/nestjs-core';
import { OrmController, OrmPagination } from '@bechara/nestjs-orm';// These DTOs are validations customized with class-validator and class-transformer
import { UserCreateDto, UserReadDto, UserUpdateDto } from './user.dto';
import { User } from './user.entity';
import { UserService } from './user.service';@Controller('user')
export class UserController {public constructor(
private readonly userRepository: UserRepository,
) { }@Get()
public async get(@Query() query: UserReadDto): Promise> {
return this.userRepository.readPaginatedBy(query);
}@Get(':id')
public async getById(@Param('id') id: string): Promise {
return this.userRepository.readByIdOrFail(id);
}@Post()
public async post(@Body() body: UserCreateDto): Promise {
return this.userRepository.createOne(body);
}@Put()
public async put(@Body() body: UserCreateDto): Promise {
return this.userRepository.upsertOne(body);
}@Put(':id')
public async putById(@Param('id') id: string, @Body() body: UserCreateDto): Promise {
return this.userRepository.updateById(id, body);
}@Patch(':id')
public async patchById(@Param('id') id: string, @Body() body: UserUpdateDto): Promise {
return this.userRepository.updateById(id, body);
}@Delete(':id')
public async deleteById(@Param('id') id: string): Promise {
return this.userRepository.deleteById(id);
}}
```## Full Examples
Refer to `test` folder of this project for a full working example including:
- Entities with several different column types
- Entity relationships including ManyToOne and ManyToMany
- Service repository extension
- Controller extension with CRUD functionality