Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@drieam/bakker

Package Overview
Dependencies
Maintainers
3
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@drieam/bakker

Default Drieam api wrapper

  • 4.11.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-92.75%
Maintainers
3
Weekly downloads
 
Created
Source

npm

@drieam/bakker

Bakker [ˈbakər] is a test library that generates models with randon data for Eduframe or Canvas

Table of Contents

Getting Started

Installation

Install the @drieam/bakker and its dependencies.

yarn add @drieam/bakker

Usage

import * as bakker from '@drieam/bakker';

const user = bakker.user();
const arrayUsers = bakker.user.array(10);
const userPeter = bakker.user({
  name: 'Peter'
});

API

Bakker.bake()

Bakker contains a generator to create new fakes base on your own custom models.

import * as faker from 'faker';
import models from '@drieam/models';
import bakker from '@drieam/bakker';

class Baker extents models.User {
  public favouriteBread;
}

const baker = bakker.user({ favouriteBread: 'toasts' }, Baker);
const mybaker = baker();
// { favouriteBread: 'toasts', .... }

Or you can create your own constructor.

import * as faker from 'faker';
import models from '@drieam/models';
import bakker from '@drieam/bakker';

class Baker extents models.User {
  public favouriteBread;
}

function defaultData() {
  return {
    favouriteBread: faker.random.arrayElement(['bread', 'appleflap', 'worstebroodje']);
  }
}

const baker = bakker.baker(defaultData, Baker);
const mybaker = baker();
// { favouriteBread: 'toasts', .... }

Contributing

We welcome all contributors who abide by our Code of Conduct. Please see the Contributors Guide for more details on submitting a PR, setting up a local dev environment, running tests, etc...

Versioning

Until this project reaches a 1.0 milestone, minor version numbers will simply be incremented during each release. The Changelog will continue to document the different types of updates, including any "breaking changes".

After the 1.0 milestone, this project will follow SemVer.

FAQs

Package last updated on 17 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc