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
- Host: GitHub
- URL: https://github.com/predetermined/deta-deno
- Owner: predetermined
- Created: 2021-06-15T19:21:33.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-06-16T06:29:00.000Z (over 4 years ago)
- Last Synced: 2025-02-27T03:32:18.429Z (7 months ago)
- Topics: database, deno, deta
- Language: TypeScript
- Homepage:
- Size: 7.81 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-deta - Deta - An unofficial Deta.sh API client for Deno. (SDK's / JavaScript SDK)
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