# cheescake

> Another factory library

Latest version **0.0.1** (published 2012-08-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install cheescake
pnpm add cheescake
yarn add cheescake
bun add cheescake
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2012-08-25 |
| First published | 2012-08-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Alexandre Gravem |
| Maintainers | agravem |
| Keywords | factory, test |

## Links

- npm: https://www.npmjs.com/package/cheescake
- Repository: https://github.com/agravem/Cheesecake
- npm.io page: https://npm.io/package/cheescake

## Dependencies (2)

- [chai](https://npm.io/package/chai.md) ~1.2.0
- [coffee-script](https://npm.io/package/coffee-script.md) ~1.3.3

## Alternatives

- [duck](https://npm.io/package/duck.md) — 4.2M weekly downloads
- [ava](https://npm.io/package/ava.md) — 560.2K weekly downloads
- [storybook-addon-module-mock](https://npm.io/package/storybook-addon-module-mock.md) — 71.7K weekly downloads
- [vest](https://npm.io/package/vest.md) — 50.1K weekly downloads
- [@ethereum-waffle/mock-contract](https://npm.io/package/@ethereum-waffle/mock-contract.md) — 40.0K weekly downloads

## Recent versions

- 0.0.1 (latest) — 2012-08-25

## README

# Cheesecake

Cheesecake is a factory library made to create simple data objects desregarding constructors.

## Example

````javascript
var Factory = require('cheesecake').Factory
Factory.define("favorite", {
  name: "White Chocolate Raspberry Cheesecake",
  servings: 6
})

// Creates a new favorite cheesecake
Factory.favorite()
// { name: "White Chocolate Raspberry Cheesecake", servings: 6 }

// Creates a new favorite increasing servings
Factory.favorite({ servings: 8 })
// { name: "White Chocolate Raspberry Cheesecake", servings: 8 }
````

---
_Source: https://npm.io/package/cheescake · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
