2 private links
Bun is a fast, all-in-one toolkit for running, building, testing, and debugging JavaScript and TypeScript, from a single file to a full-stack application. Install Bun curl curl -fsSL https://bun.sh/install | bash docker docker run --rm --init --ulimit memlock=-1:-1 oven/bun [...] import { plugin } from "bun"; plugin({ name: "YAML", async setup(build) { const { load } = await import("js-yaml"); const { readFileSync } = await import("fs"); build.onLoad({ filter: /. [...] import { test, expect } from "bun:test"; test("2 + 2", () => { expect(2 + 2).toBe(4); }); You can run your tests with the bun test command. [...] const release = await getRelease(); release.ts export async function getRelease(): Promise { const response = await fetch("https://api.github.com/repos/oven-sh/bun/releases/latest"); const { tag_name } = await response.json(); return tag_name; }
https://github.com/sissbruecker/linkding Overview #installation #using-docker #using-docker-compose #user-setup #reverse-proxy-setup #managed-hosting-options #documentation #browser-extension #community #acknowledgements #development linkding is a bookmark manager that you can host yourself. [...] The name comes from: link which is often used as a synonym for URLs and bookmarks in common language [...] For security reasons, the linkding Docker image does not provide an initial user, so you have to create one after setting up an installation. [...] Browser Extension linkding comes with an official browser extension that allows to quickly add bookmarks, and search bookmarks through the browser's address bar.