1.0.1 • Published 1 year ago

datory v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Datory - Store information easily.

Simple database with dynamic saving.

Installation:

npm install datory
yarn add datory
pnpm add datory

Quick Start:

const InitDatory = require('datory');
import InitDatory from 'datory';

Examples:

...
const Datory = new InitDatory('json.sql');
/* Also includes UTF-8 based modules. */

Datory.putInto({
    /* Name: Value */
    Foo: 'Bar'
});

Datory.findInto('Foo');
// > 'Bar'

Datory.listAll();
// > [{ Foo: "Bar" }]

Comments

Before creating an issue, please be aware that this project is joining BETA.

License

Refer to the LICENSE.

1.0.1

1 year ago

1.0.0

1 year ago