npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

data-manufactory

v1.2.1

Published

Data generation based on a schema.

Downloads

4

Readme

data-manufactory

Project Status: Active – The project has reached a stable, usable state and is being actively developed. npm version Build Status codecov

About

data-manufactory is a package for creating batch of objects. It provides a simple factory class you can instanciate to generate the batches you need.

Note: This package is based on meteor-factory written by versolearning.
Most of the credits goes to them.
If you don't need our trimmed version of the package, please use the original one.

Install

npm install --save data-manufactory
yarn add data-manufactory

Usage

data-manufactory exports a single Factory class you can import :

// ES6
import Factory from "data-manufactory";

// ES5
const Factory = require("data-manufactory");

Once imported, you just have to instanciate it to have an exportable factory you can use to generate data.

import Factory from "data-manufactory";

// In order to differentiate your factories, we advise you to name them as the data being generated
export const DataFactory = new Factory({
  name: "factory", // The name of your factory
  schema: {}, // The schema to apply and generate the data
  after: [], // An array of function to apply each time an object is generated during build
  afterBuild: [], // An array of function to apply after the build is completed
  enableLogging: false, // Whether or not the logging should be enabled for this seeder
});

You can read the README.md of versolearning for more information and documentation.

Authors

data-manufactory is maintained by M4dNation Company. First version written by axelvaindal.

Contributors

There is actually no other contributors for this project. If you want to contribute, feel free to make any suggestions or to contact us.

Contributing to the package

We try to keep data-manufactory as simple as possible, this is why we decided to clone the package created by versolearning.
Before proposing a PR or opening an issue, please keep in mind :

- This package is meant to be as simple as possible
- This package tries to respect the [Single Responsibility Principle](https://en.wikipedia.org/wiki/Single_responsibility_principle)
- This package tries to use the minimum of dependencies possible

Taking into account the previous points leads us to NOT merge proposed pull-request if those :

- Integrate changes that are too far from the initial purpose of the package
- Integrate changes that are adding additional dependencies
- Integrate changes that are not unit tested and motivationated

This being said, we really welcome pull-request and bug report, so feel free to start a contribution.

Moreover, Pull Requests should always come with related unit tests, and won't be considered if tests aren't included.

Testing

data-manufactory uses jest for unit testing.
If you don't know about jest yet, you can check out their documentation.

To run the tests, just run :

yarn test

Note that we are using codecov to keep track of code coverage related to our tests and you shouldn't affect negatively the current coverage of the code by removing tests or not covering new features with new unit tests.

Licence

data-manufactory is available under the terms of the MIT LICENSE.
Check the licence file for more information.