Skip to main content
Module

x/linkding/mod.ts

Access your Linkding API with Deno.
Latest
import * as linkding from "https://deno.land/x/linkding@v1.0.1/mod.ts";

Simple module for accessing your Linkding instance.

Example for getting all bookmarks

import { listBookmarks } from 'https://deno.land/x/linkding/mod.ts';

const allBookmarks = await listBookmarks({ all: true });
// do what you need to do with the bookmarks.

Example for single bookmark

import { getBookmark } from 'https://deno.land/x/linkding/mod.ts';

const bookmark = await getBookmark(10);
// do what you need to do with the bookmark.