New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

d1-driver

Package Overview
Dependencies
Maintainers
0
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

d1-driver

🌤️ Cloudflare D1 External Fetch Compatible Driver

  • 2.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3K
decreased by-8.89%
Maintainers
0
Weekly downloads
 
Created
Source

d1-driver

npm-version npm-license npm-download-month npm-min-size ci.yml

🌤️ Cloudflare D1 External Fetch Compatible Driver

Installation

npm i d1-driver

Usage

import { D1 } from 'd1-driver'

// Create a new instance of D1
const d1 = new D1('YOUR_CLOUDFLARE_ACCOUNT_ID', 'YOUR_CLOUDFLARE_API_KEY')

// List all databases
const db_list = await d1.list()

const db_uuid = db_list[0].uuid

// Get a database by UUID
await d1.get(db_uuid)

// Create a new database
await d1.create('new_database_name')

// Delete a database by UUID
await d1.delete(db_uuid)

// Query a database
await d1.query(db_uuid, 'SELECT * FROM table_name')

License

MIT

Keywords

FAQs

Package last updated on 22 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc