Access your Linkding's API with Deno.
- TypeScript 100%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
|
|
||
| src | ||
| .build.yml | ||
| .env.example | ||
| .gitignore | ||
| deno.json | ||
| deno.lock | ||
| LICENSE.md | ||
| mod.ts | ||
| README.md | ||
deno-linkding
Access your Linkding instance with Deno.
Usage
Requires environment variables for both LINKDING_URL and LINKDING_API.
Examples
All bookmarks
import { bookmarks } from "https://deno.land/x/linkding/mod.ts";
const allBookmarks = await bookmarks();
Single bookmark
import { bookmark } from "https://deno.land/x/linkding/mod.ts";
const bmark = await bookmark(10);