1.1.0 • Published 2 years ago

@sqrtox/deta v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@sqrtox/deta

About

Deta library for JavaScript.

npm install @sqrtox/deta
yarn add @sqrtox/deta
pnpm install @sqrtox/deta

Usage

import { Base } from '@sqrtox/deta';

const PROJECT_KEY = process.env.PROJECT_KEY;

const commentsBase = new Base({
  name: 'comments',
  projectKey: PROJECT_KEY
});

const comment = await commentsBase.get('c0mment1d');
import { Drive } from '@sqrtox/deta';

const PROJECT_KEY = process.env.PROJECT_KEY;

const imagesDrive = new Drive({
  name: 'images',
  projectKey: PROJECT_KEY
});

const file = await imagesDrive.get('path/to/file');
1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago