Socket
Socket
Sign inDemoInstall

@lykmapipo/mongoose-faker

Package Overview
Dependencies
124
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @lykmapipo/mongoose-faker

mongoose plugin to generate fake model data


Version published
Maintainers
1
Install size
20.9 MB
Created

Changelog

Source

0.12.0 (2021-09-27)

Chores
  • release: compile latest source (6ba2eb2a)
Refactors

Readme

Source

mongoose-faker

Build Status Dependencies Status Coverage Status GitHub License

Commitizen Friendly code style: prettier Code Style npm version

mongoose plugin to generate fake model data

Requirements

Install

$ npm install --save mongoose @lykmapipo/mongoose-faker

Usage

import mongoose from 'mongoose';
import mongooseFaker from '@lykmapipo/mongoose-faker';

mongoose.plugin(mongooseFaker);
const { Schema } = mongoose;

const UserSchema = new Schema({
  name: {
    type: String,
    fake: {
      generator: 'name',
      type: 'firstName',
    },
  },
});
const User = mongoose.model('User', UserSchema);

const user = User.fake();
console.log(user);

const users = User.fake(50);
console.log(users);

API

Static

Model.fake(size, locale): model|model[]

Return fake model(s) instance base of specified size and locale

Example:

const user = User.fake();
const users = User.fake(4);
Model.fakeOnly(...fields): model|model[]

Return a fake model(s) instance with only specified fields

Example:

const user = User.fakeOnly('name', 'age');
const users = User.fakeOnly(4, 'name');
Model.fakeExcept(...fields): model|model[]

Return fake model(s) instance without specified fields

Example:

const user = User.fakeExpect('name', 'age');
const users = User.fakeExpect(4, 'name', 'age');

Instance

model.fakeOnly(...fields): model

Return updated fake model instance with only specified fields updated

Example:


....

const user = user.fakeOnly('name');
const user = user.fakeOnly('name', 'age');
model.fakeExcept(...fields): model

Return updated fake model instance with specified fields not updated

Example:


...

const user = user.fakeExpect('name', 'age');
const users = user.fakeExpect('name', 'age');

Testing

  • Clone this repository

  • Install all development dependencies

$ npm install
  • Then run test
$ npm test

Contribute

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.

Licence

The MIT License (MIT)

Copyright (c) lykmapipo & 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.

Keywords

FAQs

Last updated on 27 Sep 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc