Overview + installation
Before starting, you need to be authenticated, since the package is hosted within a private npm registry, the authentication steps are described before.
Authentication
npm i @tradinos/cms-backend-entity nestjs-clsimport { ClsPluginEntity } from '@tradinos/cms-backend-entity';
ClsModule.forRoot({
// ....
plugins: [
new ClsPluginEntity(),
],
}),
import { EntityModule } from "@tradinos/cms-backend-entity"
EntityModule.register({
// Options Here
}) Last updated