9.0.2-beta.3 • Published 6 days ago

@hsds/helix v9.0.2-beta.3

Weekly downloads
-
License
-
Repository
-
Last release
6 days ago

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.

9.0.2-beta.3

6 days ago

9.0.2-beta.2

17 days ago

9.0.2-beta.1

19 days ago

9.0.2-beta.0

20 days ago

9.0.2-esm.0

1 month ago

9.0.2-esm.1

1 month ago

9.0.1

3 months ago

9.0.1-next.4

3 months ago

9.0.1-next.2

3 months ago

9.0.1-next.3

3 months ago

9.0.1-next.0

3 months ago

9.0.1-next.1

3 months ago

9.0.0

4 months ago

8.1.3-rc.4

4 months ago

8.1.3-rc.5

4 months ago

8.1.3

4 months ago

8.1.3-rc.3

4 months ago

8.1.3-rc.2

4 months ago

8.1.3-rc.0

4 months ago

8.1.3-rc.1

4 months ago

7.1.2-alpha.3

10 months ago

7.1.2-alpha.2

10 months ago

7.1.2-alpha.1

10 months ago

7.1.2-alpha.0

10 months ago

7.1.2-beta.0

10 months ago

7.9.2-alpha.5

9 months ago

7.9.2-alpha.6

9 months ago

7.9.2-alpha.4

10 months ago

8.1.0

7 months ago

8.0.0

9 months ago

8.1.2

6 months ago

8.1.1

7 months ago

7.1.1

1 year ago

7.1.1-beta.0

1 year ago

7.1.1-beta.1

1 year ago

7.1.1-alpha.0

1 year ago

7.0.0

1 year ago

7.1.0

1 year ago

5.2.1

2 years ago

5.2.0

2 years ago

4.1.0

2 years ago

5.0.0

2 years ago

4.0.0

2 years ago