An open API service indexing awesome lists of open source software.

https://github.com/sst/kysely-data-api


https://github.com/sst/kysely-data-api

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

## Kysely Data Api

This library adds AWS RDS Data Api support for [kysely](https://github.com/koskimas/kysely). It has support for both MySQL and Postgres

### Usage

```typescript
const dataApi = new DataApiDialect({
mode: "mysql",
driver: {
client: new RDSDataService(),
database: "bench",
secretArn: "",
},
});

export const db = new Kysely({ dialect: dataApi });
```