datory
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

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');

With TypeScript:

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.

Readme

Keywords

Package Sidebar

Install

npm i datory

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

4.48 kB

Total Files

5

Last publish

Collaborators

  • faon