@stackr/sdk
v0.6.0
Published
core utilities for stackr SDK
Downloads
70
Readme
Stackr SDK [JS]
The Stackr JavaScript core library contains all the modules required to setup and start building your applications as Micro-Rollups.
Documentation
Read the docs for details
Requirements
Node v16 or higher
Installation
Download and install the core module directly
npm i @stackr/sdk
Usage
Database configuration
For SQLite, you can use the following configuration and install the
sqlite3
package"datastore": { "type": "sqlite", "uri": "path/to/db", }
For PostgreSQL, you can use the following configuration and install the
pg
package"datastore": { "type": "postgres", "uri": "postgresql://user:password@host:port/db", }