cloudflare-d1-http-knex
TypeScript icon, indicating that this package has built-in type declarations

1.3.2 • Public • Published

cloudflare-d1-http-knex

License: MIT NPM Version Coverage Status Testing Status

An npm package that query Cloudflare's D1 through Query D1 Database API and Knex.

Installation

npm install cloudflare-d1-http-knex

# or
bun add cloudflare-d1-http-knex

Usage

import { createConnection } from 'cloudflare-d1-http-knex';

// The connection function returns a Knex instance
const connection = createConnection({
  account_id: 'account_id',
  database_id: 'database_id',
  key: 'key',
});

const query = await connection('table_name').select('*');

Mocking

  1. Install better-sqlite3: npm install -D better-sqlite3.
  2. Using in case:
import { createConnection } from 'cloudflare-d1-http-knex'
import { mockedFetch } from 'cloudflare-d1-http-knex/mock'

const db = createConnection({
  account_id: 'xxxx',
  database_id: 'xxxx',
  key: 'xxxx',
  mockedFetch, // Using mocked fetch, it won't connect to real D1 database.
})

await db.raw('SELECT 1+1')

Usage mockedFetch as Global in Jest

You should add below codes to your jest setup files.

import { mockedFetch } from 'cloudflare-d1-http-knex/mock'

global.fetch = jest.fn(mockedFetch)

Changelog

See CHANGELOG.md.

Readme

Keywords

Package Sidebar

Install

npm i cloudflare-d1-http-knex

Weekly Downloads

57

Version

1.3.2

License

MIT

Unpacked Size

23.4 kB

Total Files

14

Last publish

Collaborators

  • zfben