install and get your instance
This page will help you get started with fixture-factory. You'll be up and running in a jiffy!
Get your fixture-factory package with npm
npm install fixture-factory --save-dev
require it in the project and you are all set ( notice you are getting ready-for-action instance, no new
required)
var fixtureFactory = require('fixture-factory');
if for whatever reason you need a second instance just call .noConflict()
on the first one
var fixtureFactory = require('fixture-factory');
var mySecondFixtureFactory = fixtureFactory.noConflict();
Updated less than a minute ago