
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@joktec/mongo
Advanced tools
A NestJS library that provides a wrapper around the `mongoose` and `@typegoose/typegoose` libraries for MongoDB.
This library provides an easy-to-use interface for working with MongoDB in NestJS applications. It is built on top of the popular mongoose and @typegoose/typegoose libraries, and provides a set of convenient abstractions for working with these libraries.
To install this library, use either npm or yarn:
npm install -S @joktec/core @joktec/mongo
# or
yarn add -S @joktec/core @joktec/mongo
To use this library, you must first provide the necessary configuration. This can be done by creating a config.yml file in your application's root directory, with the following content:
mongo:
host: localhost
port: 27017
user: my_user
password: my_pass
database: my_database
Replace the values with your actual database connection information.
Once you have provided the configuration, you can import the MongoModule in your AppModule:
import { CoreModule, Module } from '@joktec/core';
import { MongoModule } from '@joktec/mongo';
@Module({
imports: [CoreModule, MongoModule],
})
export class AppModule {}
You can then use the MongoService to interact with the database:
import { Injectable } from '@joktec/core';
import { MongoService } from '@joktec/mongo';
@Injectable()
export class UserService {
constructor(private readonly mongoService: MongoService) {}
async getUsers() {
const users = await this.mongoService.getModel(User).findAll();
return users;
}
}
You can define a model using @joktec/mongo (based on interface of @typegoose/typegoose):
import { modelOptions, mongoose, prop } from '@joktec/mongo';
@modelOptions({ schemaOptions: { collection: 'users' } })
export class User {
@prop({ auto: true, immutable: true })
public _id?: mongoose.Types.ObjectId;
@prop()
firstName: string;
}
You can create a repository for your model by extending the MongoRepository class and providing the model type as a generic argument:
import { Injectable } from '@joktec/core';
import { MongoRepository } from '@joktec/mongo';
import { User } from './user.model';
@Injectable()
export class UserRepository extends MongoRepository<User> {}
You can then use the repository in your service:
import { Injectable } from '@nestjs/common';
import { UserRepository } from './user.repository';
@Injectable()
export class UserService {
constructor(
private readonly userRepository: UserRepository,
) {}
async getUsers() {
const users = await this.userRepository.findAll();
return users;
}
}
Contributions to @joktec/mongo are welcome. If you would like to contribute, please fork the repository, make your changes, and submit a pull request.
Please make sure to update tests as appropriate.
FAQs
JokTec - Mongo Service
The npm package @joktec/mongo receives a total of 13 weekly downloads. As such, @joktec/mongo popularity was classified as not popular.
We found that @joktec/mongo demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.