Schema
The primary building block for starting with laying out your database collections.
info
See examples/databasing for getting started with databasing.
Constructor
new Schema(definition);
PARAMETER | TYPE | OPTIONAL | DEFAULT | DESCRIPTION |
---|---|---|---|---|
definition | object | ❌ | null | Schematic for what you will be storing. |
Methods
serialize
Serialize object into a string.
serialize(data);
PARAMETER | TYPE | OPTIONAL | DEFAULT | DESCRIPTION |
---|---|---|---|---|
data | object | ❌ | null | Data to serialize. |
Returns
deserialize
Deserialize string into object.
deserialize(raw);
PARAMETER | TYPE | OPTIONAL | DEFAULT | DESCRIPTION |
---|---|---|---|---|
raw | string | ❌ | null | Raw data to deserialize. |