npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@yooniversity/nestjs-typeorm

v10.0.0-rc7

Published

Nest - modern, fast, powerful node.js web framework (@typeorm)

Downloads

55

Readme

Description

TypeORM module for Nest. Based on @nestjs/typeorm, but with support for managing and extending repositories.

Installation

$ npm i --save @yooniversity/nestjs-typeorm

Quick Start

Overview & Tutorial of original library

New Feature: Repository Management

Disclaimer

This library is shared because we know typeOrm extendability is something that lots of devs are missing. This package uses some tricks+hacks to achieve extendability. It may cause issues when updating TypeOrm. It works fine within our own setup, but might be difficult to set up for other projects. The library does not aim to provide a general, highly-compatible or easy-to-use solution! Primarily it is here to be used for our own projects. Feel free to try out, fork or let it inspire you to implement your own solution.

TypeOrm flaws and how this libary helps

TypeOrm itself has very bad extension possibilities. Unfortunately the devs are not going to change this - see https://github.com/typeorm/typeorm/issues/9312

TypeOrm uses an internal repository instance cache and hardcoded repository classes. It features a repository extension system which works by

  • instancing a regular repo
  • calling repository.extend which will return an instance of a child class with passed functionality composed onto it.

This has severe flaws:

  • extended repositories will never be added to the internal repository instance cache
  • meaning all internal actions using repos will never use extended repositories
  • must be called every time after using dataSource/connection.getRepository - as this will point to the un-extended repository
  • must be called individually for each Entities' repository

This library does some trickery allowing to break these limitations.

@yooniversity/nestjs-typeorm allows to:

  • specify base Repository class per connection
  • specify Repository class specific to one Entity
  • Mixins which allow Repositories to be enhanced (similar to typeOrms Repository.extend system)
  • specified custom classes and mixins will be auto-applied when injecting a repository, no need to remember any custom setup routines when using the repository.

@nestjs/typeorm has a simple custom repository system as well. Comparison:

| | @nestjs/typeorm | @yooniversity/nestjs-typeorm | | --- | --- | --- | | Concept | registered custom repos CAN be used | registered repos WILL be used | | Setup | Custom repos must be listed in every forFeature | Custom repos need to be specified once in the forRoot setup. | | Injection | Custom repos must be injected explicitly | Registered repos are detected and auto-injected instead of standard repo classes. | | Mixins | N/A | Repos can be enhanced using mixins. |

Custom Base Repository

Within TypeOrmModule configuration, a new property baseRepository can be specified. The passed class will be used for ALL entities within the defined connection, except for TreeEntities and entities with a specific custom repository (see below). Note that the class must extend the class MixinRepository exported from this package.

Specific Repository for Entity

Within TypeOrmModule configuration, a new property repositories can be specified. It should contain an Array of Repository classes. Each class must:

  • extend the class MixinRepository exported from this package
  • has to have the CustomRepository(<entity>) decorator assigned - this specifies which Entity the Custom Repository belongs to.

Mixins

Opposed to typeOrm's extend system, mixins make use of runtime modification of class instances. This is required because repository providers are created eagerly. As described above, extend system works by creating a new child class. Providers do not know about such child classes though.

Example on how to register a mixin:


@Injectable()
export class Foo {

	constructor(
		@InjectDataSourceManager('<connectionId>') dsManager
	) {
		dsManager.addMixin({
			name:'ThisIsMyMixin',
			factory:(parentRepo:Repository<UserEntity>)=>{		
				// the returned object will be merged into the Repository instance
				return {
					save: async (
						entityOrEntities: T | T[],
						options?: SaveOptions,
					)=>{
						// execute parent save logic
						// doing it this way has the benefit of allowing mixin overrides to be stacked
						const result = await parentRepo.save.call(parentRepo,entityOrEntities,options);
						// do whatever should be done ... then
						return result;
					},
					customFunctionality: ()=> {
						// ...
					}
				}
			}
		}, UserEntity /* or 'all' to apply mixin to every Entity registered within the DataSource/Connection */)
	}

}

How to validate your setup

Check your nestjs startup log. Search for [DataSourceManager]. It will log info on what Repository and Mixins are being used.

Support

Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.

Stay in touch

License

Nest is MIT licensed.