A javascript / typescript http and websocket client and type system for Lemmy.
Find a file
renovate[bot] 65567952d4
Update typescript-eslint monorepo to v8.19.0 (#439)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-03 19:23:13 -05:00
.github
.husky Migrate from yarn to pnpm. (#236) 2024-01-28 22:08:00 -05:00
src Combined reports (#419) 2025-01-03 14:36:11 -05:00
.gitignore
.prettierrc.json
.woodpecker.yml Fixing woodpecker secrets warning. (#420) 2024-12-03 18:13:16 -05:00
CHANGELOG.md Updating git cliff. (#361) 2024-09-27 20:24:25 +00:00
cliff.toml Updating git cliff. (#361) 2024-09-27 20:24:25 +00:00
copy_generated_types_from_lemmy.sh Upgrading to use ts-rs 10.0.0 (#394) 2024-11-07 12:07:49 -05:00
deploy.sh Migrate from yarn to pnpm. (#236) 2024-01-28 22:08:00 -05:00
eslint.config.mjs Update dependency eslint to v9 (#272) 2024-05-15 13:28:23 -04:00
generate_changelog.sh Adding git cliff to auto-generate changelogs (#350) 2024-09-19 16:28:48 -04:00
LICENSE
package.json Combined reports (#419) 2025-01-03 14:36:11 -05:00
pnpm-lock.yaml Update typescript-eslint monorepo to v8.19.0 (#439) 2025-01-03 19:23:13 -05:00
putTypesInIndex.js Update types 3 (#359) 2024-09-30 08:14:59 -04:00
README.md Better readme example. (#261) 2024-05-04 18:42:51 +00:00
renovate.json Running renovate every weekend. (#365) 2024-09-30 22:13:26 -04:00
tsconfig.json Make private class properties actually private (#128) 2023-06-05 19:32:23 -04:00

GitHub tag (latest SemVer) GitHub issues License GitHub stars

lemmy-js-client

A javascript / typescript http client and type system for Lemmy.

Installation

pnpm install lemmy-js-client

Usage

HTTP Client

LemmyHttp docs

import { LemmyHttp, Login } from "lemmy-js-client";

// Build the client
const baseUrl = "https://lemmy.ml";
const client: LemmyHttp = new LemmyHttp(baseUrl);

// Build the login form
const loginForm: Login = {
  username_or_email: "my_name",
  password: "my_pass",
};

// Login and set the client headers with your jwt
const { jwt } = await client.login(loginForm);
client.setHeaders({ Authorization: `Bearer ${jwt}` });

// Fetch top posts for the day
const getPostsForm: GetPosts = {
  sort: "TopDay",
  type_: "Local",
};
const posts = await client.getPosts(getPostsForm);

Development

Use pnpm add to develop and test changes locally:

pnpm add path/to/lemmy-js-client