Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
xpress-mongo
Advanced tools
Xpress-Mongo is a lightweight mongodb ODM both in size and in actions.
Unlike other Mongodb ODM's, xpress keeps you closer to mongodb-native calls using the raw
function available on all model instances
// Using
const User = SomeCollection();
User.findOne(); // XpressMongo findOne
User.raw.findOne(); // Mongodb findOne
Assuming you already have your client connected already..
// Import XpressMongo
const {Client} = require('xpress-mongo');
// Use your already existing client.
const Database = Client('your_client').useDb('database_name');
// Define models using collection names
const UserModel = Database.model('users');
const PostModel = Database.model('posts');
UserModel.findOne().then(user => console.log(user));
PostModel.find().then(posts => console.log(posts));
const {is, Collection} = require('xpress-mongo');
const UserSchema = {
_id: is.ObjectId(),
email: is.String().required(),
first_name: is.String().required(),
last_name: is.String().required(),
verified: is.Boolean(),
created_at: is.Date()
};
class Users extends Collection("users") {
constructor() {
super();
this.setSchema(UserSchema);
}
}
module.exports = Users;
const user = new Users().set({
first_name: 'John',
last_name: 'Doe'
});
console.log(user.get('created_at'));
// Current Date
FAQs
Light Weight ODM for mongoDb NodeJs
The npm package xpress-mongo receives a total of 20 weekly downloads. As such, xpress-mongo popularity was classified as not popular.
We found that xpress-mongo demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.