This modules wraps @platformatic/sql-mapper
,
@platformatic/sql-graphql
and
@platformatic/sql-openapi
in a convenient Fastify
plugin.
Check out the full documentation for Platformatic DB on our website.
npm install @platformatic/db-core
import fastify from 'fastify'
import db from '@platformatic/db-core'
const app = Fastify()
app.register(db, {
// connectionString: 'postgres://postgres:postgres@127.0.0.1/postgres'
// connectionString: 'mysql://root@127.0.0.1:3307/graph'
connectionString: 'sqlite://:memory:'
})
Apache 2.0