#Contrived ###a simple way to load contrived data for your node app
##Usage
Create a
contrived/directory at the root of your node appapp.coffee contrived/ package.jsonCreate yaml model files for each model you would like to load
contrived/ users.yaml tasks.yamlan example
users.yamlwould look like:- firstName: JohnlastName: Doeemail: [email protected] - firstName: JanelastName: Dameemail: [email protected]
Require the
contrivedmodulecontrived=require'contrived'
Use some contrived data
console.logcontrived.users
##Todo
- support additional data formats
- support nested
contrives