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

meteor-ts-factory

v1.0.0

Published

A package for creating test data or for generating fixtures.

Downloads

22

Readme

Node Factory

A package for creating test data or for generating fixtures.

Table of Contents

Examples

Defining factories

import Factory from 'factory';

const factory = new Factory();

// Reference to mongo collections. Depending on how you interface with mongo
// getting these references will vary. The important part is that the collection
// should have the async functions `insert` and `findOne`.
const { authors, books } = db;

factory.define('author', authors, {
  name: 'John Smith'
}).after(author => {
  // Do something smart
});

factory.define('book', books, {
  authorId: factory.get('author'),
  name: 'A book',
  year() { return _.random(1900, 2014); }
});

// We can also extend from an existing factory
factory.define('anotherBook', books, factory.extend('book', {
  // ...
}));

Creating documents

// Ex. 1: Inserts a new book into the books collection
const book = factory.create('book');

// Ex. 2: New fields can be added or overwritten
const book = factory.create('book', { name: 'A better book' });

API

Note: When calling factory.create('book') both the Book and an Author are created. The newly created Author _id will then be automatically assigned to that field. In the case of calling factory.build('book') as no insert operations are run, the _id will be faked.

define

factory.define('name', Collection, doc).after(doc => { ... })

  • name
    • A name for this factory
  • Collection
    • A mongo collection
  • doc
    • Document object
  • .after hook (Optional)
    • Returns the newly inserted document after calling factory.create

get

factory.get('name')

Returns the instance of name. Typical usage is to specify a relationship between collections as seen in the Book example above.

build

factory.build('name', doc)

Builds the data structure for this factory

  • name
    • The name defined for this factory
  • doc (Optional)
    • Document object

tree

factory.tree('name', doc)

Builds an object tree without _id fields. Useful for generating data for templates.

  • name
    • The name define for this factory
  • doc (Optional)
    • Document object

Example:

  factory.define('author', authors, {
    name: "John Smith"
  });

  factory.define('book', books, {
    name: "A book",
    author: factory.get('author')
  });

  const book = factory.tree('book');

book then equals:

{
  name: 'A book',
  author: {
    name: 'John Smith'
  }
}

create

factory.create('name', doc)

Creates (inserts) this factory into mongodb

  • name
    • The name defined for this factory
  • doc (Optional)
    • Document object

extend

factory.extend('name', doc)

Extend from an existing factory

  • name
    • The name defined for this factory
  • doc (Optional)
    • Document object

License

MIT.

Node Factory is based on https://github.com/versolearning/meteor-factory MIT. (c) Percolate Studio