1.6.1 • Published 10 months ago

@founderpath/kysely-clickhouse v1.6.1

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

@founderpath/kysely-clickhouse

Kysely adapter for Clickhouse.

npm i @clickhouse/client @founderpath/kysely-clickhouse

This project was largely adapted from kysely-planetscale. It's a barebone version, there's a lot of improvements that can be done here.

Usage

Pass your Clickhouse connection options into the dialect in order to configure the Kysely client. Follow these docs for instructions on how to do so.

import { Kysely } from 'kysely';
import { ClickhouseDialect } from '@founderpath/kysely-clickhouse';

interface SomeTable {
  key: string;
  value: string;
}

interface Database {
  some_datasets.some_table: SomeTable
}

const db = new Kysely<Database>({ dialect: new ClickhouseDialect() });
1.6.1

10 months ago

1.6.0

10 months ago

1.5.1

11 months ago

1.5.0

11 months ago

1.4.0

11 months ago

1.3.0

11 months ago

1.2.0

11 months ago

1.1.0

11 months ago

1.0.1

11 months ago

1.0.0

11 months ago