Skip to content

fullcube/loopback-component-templates

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

loopback-component-templates

Greenkeeper badge Define complex data templates for loopback models

Circle CI Dependencies Coverage Status

Installation

  1. Install in you loopback project:

npm install --save loopback-component-templates

  1. Create a component-config.json file in your server folder (if you don't already have one)

  2. Configure options inside component-config.json. (see configuration section)

{
  "loopback-component-templates": true
}

Usage

  1. Define a template config on a Model._templates property.

  2. Define the templates that generate dummy data. In this example we add a remote method called _template_basic to the Product model.

const faker = require('faker/locale/en')
Product._templates = () => ({
  basic: () => ({
    name: faker.commerce.productName(),
    description: faker.lorem.sentence(),
  }),
})

TODO:

  • Add way to create related/deep structures
  • Add option to Validate template generators