Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A Deno engine for the SurrealDB JavaScript SDK

License

NotificationsYou must be signed in to change notification settings

surrealdb/surrealdb.deno

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

 

A Deno engine for the SurrealDB JavaScript SDK.


   

     

surrealdb.deno

A Deno engine for the SurrealDBJavaScript SDK.

This library is under active development and is not yet released.

This library is a plugin for the SurrealDB JavaScript SDK, which can be used to run SurrealDB as an embedded database within a Deno server side environment.

It enables SurrealDB to be run in-memory, or to persist data by running on top of SurrealKV. It allows for a consistent JavaScript and TypeScript API when using thesurrealdb.js library by adding support for embedded storage engines (memory,surrealkv) alongside the remote connection protocols (http,https,ws,wss).

Example usage

importSurrealfrom"https://deno.land/x/surrealdb/mod.ts";import{surrealdbDenoEngines}from"https://deno.land/x/surrealdb.deno/mod.ts";// Enable the WebAssembly enginesconstdb=newSurreal({engines:surrealdbDenoEngines(),});// Now we can start SurrealDB as an in-memory databaseawaitdb.connect("mem://");// Or we can start a persisted SurrealKV databaseawaitdb.connect("surrealkv://demo");// Now use the JavaScript SDK as normal.

[8]ページ先頭

©2009-2025 Movatter.jp