![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
rest-router
Advanced tools
npm i rest-router
How to use:
//routes var restRouter = require('rest-router'); app.use('/users', restRouter('user')); // where user is name of mongoose Model //models var UserSchema = Schema({ name: {type: String}, age: {type: Number}, friends: [{ type: ObjectId, ref: 'user' }], avatar: {type: String}, password: { type: String, secureIn: 1, secureOut: 100 } }); //All attributes are optional UserSchema.options = { defaultSortField: '_id', defaultLimit: 10, defaultSecureIn: 0, defaultSecureOut: 0, filterField: 'age', //string searchFields: ['name', 'age'], //array or string //calling on POST, GET (one), PUT, PATCH, DELETE request methods. init: function (req) {req.params.id = req.session.user._id; }, //calling on POST, PUT, PATCH. model = req.body; validate: function (model, isNew) {console.log(isNew); } }; module.exports = mongoose.model('user', UserSchema);
And now you can use: localhost/users?expand=friends&filter=someUserAge& sortfield=age&sortorder=-1&skip=2&limit=10&search=nameAge 1. expand=friends&expand=otherObjectIdField 2. filter=someValue - filter by single field specified in schema options 3. sort, skip, limit to paginate your view When you request collection in first (index 0) it element will be attribute totalCount. 4. search=nameage - searching in all model's fields specified in options 5. Also module provide secure for record and read models. secureIn and secureOut in model path attributes if path has secureIn or secureOut upper than user role, it have being deleted. role = req.user.role || 0;
FAQs
All The Rest. Universal router for all models.
The npm package rest-router receives a total of 0 weekly downloads. As such, rest-router popularity was classified as not popular.
We found that rest-router demonstrated a not healthy version release cadence and project activity because the last version was released 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.