@helpscout/helix
Version:
A Faker-powered fixture generator for Javascript
45 lines (30 loc) • 1.55 kB
Markdown
# Helix 💠
[](https://travis-ci.org/helpscout/helix) [](https://coveralls.io/github/helpscout/helix?branch=master) [](https://badge.fury.io/js/%40helpscout%2Fhelix)
> A fixture generator for Javascript, powered by [Faker](https://github.com/marak/Faker.js/).
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 @helpscout/helix --save-dev
```
## Documentation
Check out **[our documentation](./docs)** for more info!
## Basic usage
The `createSpec` function is used to define your fixture spec. Helix comes with an adjusted version of [Faker.js](https://github.com/marak/Faker.js/), which also needs to be imported. Note, the API for Helix's faker is the **exact** same as Faker.js.
```js
import { createSpec, faker } from '@helpscout/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](https://github.com/marak/Faker.js/#api-methods).