core utilities for stackr SDK
npm install @stackr/sdk!Workflow 
The Stackr JavaScript core library contains all the modules required to setup and start building your applications as Micro-Rollups.
Read the docs for details
Node v16 or higher
Download and install the core module directly
``sh`
npm i @stackr/sdk
- For SQLite, you can use the following configuration and install the sqlite3 package
`json`
"datastore": {
"type": "sqlite",
"uri": "path/to/db",
}
- For PostgreSQL, you can use the following configuration and install the pg package
`json``
"datastore": {
"type": "postgres",
"uri": "postgresql://user:password@host:port/db",
}