@hsds/helix

9.0.2-beta.2 • Public • Published

Helix 💠

A fixture generator for Javascript, powered by Faker.

Helix allows you to quickly (and reliably) generate fixture data to be hydrated into Javascript components/views (like React, Vue, Backbone, etc…).

Install

npm install @hsds/helix --save-dev

Documentation

Check out our documentation for more info!

Basic usage

The createSpec function is used to define your fixture spec. Helix comes with an adjusted version of Faker.js, which also needs to be imported. Note, the API for Helix's faker is the exact same as Faker.js.

import { createSpec, faker } from '@hsds/helix'

const CustomerSpec = createSpec({
  id: faker.datatype.number()
  fname: faker.name.firstName()
  lname: faker.name.lastName()
  company: faker.company.companyName()
})

const fixture = CustomerSpec.generate()

// Output
// {
//   id: 12339041,
//   fname: 'Alice',
//   lname: 'Konigsberg',
//   company: 'Smiths Co.'
// }

For a full list of Faker methods, check out their documentation.

Dependencies (5)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @hsds/helix

    Weekly Downloads

    211

    Version

    9.0.2-beta.2

    License

    none

    Unpacked Size

    61.3 kB

    Total Files

    41

    Last publish

    Collaborators

    • kdipaolo
    • luketlancaster
    • charca
    • justin-helpscout
    • jjanczyk
    • tinkertrain
    • helpscout