0.0.7 • Published 3 years ago

nestjs-generic-crud v0.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Description

NestJs Generic CRUD A Simple CRUD Library for NestJs Framework

Using CrudService Example

# development
@Injectable()
export class UserService extends CrudService<User> {
  constructor(
    @InjectRepository(User)
    private readonly userRepository: Repository<User>,
  ) {
    super(userRepository);
  }
}

Using CrudController Example

@Controller('users')
export class UserController extends CrudController<User> {
  constructor(private readonly userService: UserService) {
    super(userService);
  }
}

License

NestJs Generic Crud is MIT licensed.

0.0.3

3 years ago

0.0.2

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

1.0.2

3 years ago

0.0.1

5 years ago