Access your Linkding's API with Deno.
This repository has been archived on 2026-09-09. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
  • TypeScript 100%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Tim Hårek Andreassen 9c3e0a0c4f
fix: Typo
Signed-off-by: Tim Hårek Andreassen <tim@harek.no>
2024-06-01 21:01:59 +02:00
src fix: Add notes 2024-05-30 10:54:49 +02:00
.build.yml fix: Typo 2024-06-01 21:01:59 +02:00
.env.example feat: Add env examples 2023-02-01 21:26:07 +01:00
.gitignore feat: Add env examples 2023-02-01 21:26:07 +01:00
deno.json fix: Export types 2024-05-30 10:59:14 +02:00
deno.lock refactor: Use JSR modules instead of /x 2024-05-15 20:59:47 +02:00
LICENSE.md feat: Add license 2024-04-17 11:11:05 +02:00
mod.ts fix: Export types 2024-05-30 10:59:14 +02:00
README.md docs: Update README 2024-04-17 11:10:24 +02:00

Latest version sourcehut GitHub mirror

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);