Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
mongoose-valid8
Advanced tools
Additional mongoose schema validations.
npm install mongoose mongoose-valid8 --save
import mongoose from 'mongoose'
import 'mongoose-valid8'
import {model, Schema} from 'mongoose'
const User = model('User', new Schema({
email: {
type: String,
email: true
}
}));
const user = new User({ email: 'invalidemail' });
user.validate((error) => {
expect(error).to.exist;
});
user.save((error) => {
expect(error).to.exist;
});
email: Boolean
When set to true
force value to be valid email address.
new Schema({
email: {
type: String,
email: true
}
});
capitalize: Boolean
When set to true
it converts the first character of string to upper case and the remaining to lower case.
new Schema({
firstName: {
type: String,
capitalize: true
}
});
startcase: Boolean
When set to true
converts string to start case(or title case).
new Schema({
name: {
type: String,
startcase: true
}
});
macaddress: Boolean
When set to true
force value to be valid macaddress.
new Schema({
address: {
type: String,
macaddress: true
}
});
ip: Boolean
When set to true
force value to be valid ip address.
new Schema({
address: {
type: String,
ip: true
}
});
fqdn: Boolean
When set to true
force value to be valid full qualified domain name.
new Schema({
address: {
type: String,
fqdn: true
}
});
alpha: Boolean
When set to true
force value to only contain alpha.
new Schema({
address: {
type: String,
alpha: true
}
});
alphanumeric: Boolean
When set to true
force value to contain only alphanumeric.
new Schema({
address: {
type: String,
aphanumeric: true
}
});
md5: Boolean
When set to true
force value to be valid md5 hash.
new Schema({
hash: {
type: String,
md5: true
}
});
uuid: Boolean
When set to true
force value to be valid uuid.
new Schema({
oid: {
type: String,
uuid: true
}
});
creditcard: Boolean
When set to true
force value to be valid credit card.
new Schema({
card: {
type: String,
creditcard: true
}
});
base64: Boolean
When set to true
force value to be valid base64 content.
new Schema({
url: {
type: String,
base64: true
}
});
datauri: Boolean
When set to true
force value to be valid data uri.
new Schema({
url: {
type: String,
datauri: true
}
});
phone: Object|Boolean
When set
it force value to be valid phone number.
new Schema({
phoneNumber: {
type: String,
phone: true
}
});
new Schema({
phoneNumber: {
type: String,
phone: {
countries: ['TZ', 'US'],
e164: true
}
}
});
new Schema({
phoneNumber: {
type: String,
phone: {
mobile: true,
e164: true
}
}
});
new Schema({
phoneNumber: {
type: String,
phone: {
fixedline: true
}
}
});
mimetype: Boolean
When set to true
force value to be mime type value.
new Schema({
mime: {
type: String,
mimetype: true
}
});
url: Boolean
When set to true
force value to be valid url.
new Schema({
address: {
type: String,
url: true
}
});
jwt: Boolean
When set to true
force value to be valid json web token.
new Schema({
address: {
type: String,
jwt: true
}
});
hexadecimal: Boolean
When set to true
force value to be valid hexadecimal value.
new Schema({
address: {
type: String,
hexadecimal: true
}
});
hexacolor: Boolean
When set to true
force value to be valid hexacolor value.
new Schema({
address: {
type: String,
hexacolor: true
}
});
numeric: Boolean
When set to true
force value to be numeric.
new Schema({
value: {
type: Number,
numeric: true
}
});
integer: Boolean
When set to true
force value to be integer.
new Schema({
step: {
type: Number,
integer: true
}
});
float: Boolean
When set to true
force value to float.
new Schema({
price: {
type: Number,
float: true
}
});
empty: Boolean
When set to false
force non empty array value.
new Schema({
email: {
type: [String],
empty: false
}
});
compact: Boolean
When set to true
will remove falsey values.
new Schema({
email: {
type: [String],
compact: true
}
})
duplicate: Boolean|Function
When set to false
or comparator
will remove duplicate values.
new Schema({
to: {
type: [String],
duplicate: false
}
})
or
new Schema({
to: {
type: [String],
duplicate: (a, b) => a === b
}
})
sort: Boolean|String
When set to true
, asc
or desc
create sorted elements.
new Schema({
to: {
type: [String],
sort: false
}
})
or
new Schema({
to: {
type: [String],
sort: 'desc'
}
})
Clone this repository
Install all development dependencies
npm install
npm run dev
npm test
It will be nice, if you open an issue first so that we can know what is going on, then, fork this repo and push in your ideas. Do not forget to add a bit of test(s) of what value you adding.
The MIT License (MIT)
Copyright (c) CodeTanzania & Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Additional mongoose schema validations
The npm package mongoose-valid8 receives a total of 1,902 weekly downloads. As such, mongoose-valid8 popularity was classified as popular.
We found that mongoose-valid8 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.