2.0.2 • Published 6 years ago

maeva-json v2.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

maeva-json

JSON in-memory database compatible with maeva

Usage

import * as data from 'maeva';
import json from 'maeva-json';

// connect
data.connect(json());

// define a model
const usersModel = data.model('users', {email: String});

// fire queries
const user = await data.insertOne(usersModel, {email: 'joe@doe.com'});
// {id: 1, "email": "joe@doe.com"}

View maeva for more information.

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago