1.3.0 • Published 1 month ago
@storecraft/database-sqlite v1.3.0
Storecraft SQLite
driver
Official SQLite
driver for StoreCraft
using better-sqlite
package.
npm i @storecraft/database-sqlite
usage
import 'dotenv/config';
import http from "node:http";
import { App } from '@storecraft/core'
import { NodePlatform } from '@storecraft/core/platform/node';
import { NodeLocalStorage } from '@storecraft/core/storage/node'
import { SQLite } from '@storecraft/database-sqlite'
import { migrateToLatest } from '@storecraft/database-sqlite/migrate.js'
const app = new App(
{
auth_admins_emails: ['admin@sc.com'],
}
)
.withPlatform(new NodePlatform())
.withDatabase(
new SQLite(
{
filepath: join(homedir(), 'db.sqlite')
}
)
)
.withStorage(new NodeLocalStorage())
.init();
await migrateToLatest(app.__show_me_everything.db, false);
http.createServer(app.handler).listen(
8000,
() => {
app.print_banner('http://localhost:8000');
}
);
Storecraft will search the following env
variables
SQLITE_FILEPATH=./data.db
So, you can instantiate with empty config
.withDatabase(
new SQLite()
)
Testing Locally
Simply run tests/runner.test.js
npm run database-sqlite:test
Author: Tomer Shalev <tomer.shalev@gmail.com>
1.0.19
3 months ago
1.0.18
3 months ago
1.0.17
3 months ago
1.0.16
3 months ago
1.2.5
2 months ago
1.3.0
1 month ago
1.0.20
2 months ago
1.0.15
3 months ago
1.0.14
4 months ago
1.0.13
4 months ago
1.0.9
6 months ago
1.0.8
6 months ago
1.0.7
8 months ago
1.0.11
5 months ago
1.0.10
5 months ago
1.0.12
4 months ago
1.0.6
9 months ago
1.0.5
9 months ago
1.0.4
9 months ago
1.0.3
9 months ago
1.0.2
10 months ago
1.0.1
10 months ago