A javascript / typescript http and websocket client and type system for Lemmy.
Find a file
2024-01-25 12:58:20 +01:00
.github Adding sleeplessone1917 to codeowners 2023-05-15 15:23:45 -04:00
.husky Add totp token (#192) 2023-09-27 14:55:29 +00:00
src Merge branch 'main' into update-types 2024-01-25 12:57:26 +01:00
.eslintrc.json #186 wrap bare strings to Error object (#207) 2023-10-26 11:56:24 -04:00
.gitignore Adding typedoc, and code comments. Fixes #29 (#30) 2021-08-22 21:01:40 -04:00
.prettierrc.json Add community language (#85) 2022-12-19 10:57:02 -05:00
.woodpecker.yml Use steps instead of pipeline for CI. (#235) 2024-01-24 18:11:20 -05:00
copy_generated_types_from_lemmy.sh Change community.local_only to community.visibility 2024-01-24 11:12:21 +01:00
deploy.sh Fixing deploy perms. 2023-09-28 08:42:27 -04:00
LICENSE Initial commit. 2020-08-19 13:29:37 -04:00
package.json 0.19.3-alpha.1 2024-01-25 12:58:20 +01:00
putTypesInIndex.js Updating moderator_view. 2023-08-29 15:53:23 -04:00
README.md Removing websocket. (#145) 2023-06-21 11:40:11 -04:00
tsconfig.json Make private class properties actually private (#128) 2023-06-05 19:32:23 -04:00
yarn.lock Fixing cross-fetch again. 2023-11-29 12:39:30 -05:00

GitHub tag (latest SemVer) GitHub issues License GitHub stars

lemmy-js-client

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

Installation

yarn add lemmy-js-client

Usage

HTTP Client

LemmyHttp docs

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

let baseUrl = 'https://lemmy.ml';
let client: LemmyHttp = new LemmyHttp(baseUrl, headers?);
let loginForm: Login = {
  username_or_email: "my_name",
  password: "my_pass",
};
let jwt = await client.login(loginForm).jwt;

Development

You can use yalc to develop and test changes locally:

yarn global add yalc

# Go to lemmy-js-client dir
yalc publish --push

# Go to your client dir
yalc add lemmy-js-client

# To do updates, go back to the lemmy-js-client dir
# This also updates it, in every dir you've added it.
yalc publish --push