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

https://github.com/predetermined/deta-deno

An unofficial Deta.sh API client for Deno
https://github.com/predetermined/deta-deno

database deno deta

Last synced: 7 months ago
JSON representation

An unofficial Deta.sh API client for Deno

Awesome Lists containing this project

README

          

# Deta
An unofficial Deta.sh API client for Deno

## Supported services
* Base

## Usage
### Creating a new client
You can find your credentials in your Deta project settings.
```typescript
import Deta from "https://deno.land/x/deta/mod.ts";

const deta = new Deta({
projectId: "DETA_IS",
projectKey: "VERY_COOL",
});
```

### Using Base
```typescript
const base = new deta.Base("users");
```

#### Supported functions
* get
* query
* delete
* update
* insert