A javascript / typescript http and websocket client and type system for Lemmy.
Find a file
Dessalines 7758a7772e
Updating reporting API. (#32)
* Updating reporting API.

* v0.12.3-rc.1

* Fix names

* v0.12.3-rc.2

* Adding creator_banned and counts to report views

* v0.12.3-rc.3

* Adding unresolved_only

* v0.12.3-rc.4

* Adding my_vote to report views

* v0.12.3-rc.5

* Fix comment
2021-09-28 10:38:49 +00:00
.husky Upgrade deps (#23) 2021-07-19 10:11:44 -04:00
src Updating reporting API. (#32) 2021-09-28 10:38:49 +00:00
.drone.yml Adding email. 2021-01-20 10:29:21 -05:00
.eslintrc.json Initial commit. 2020-08-19 13:29:37 -04:00
.gitignore Adding typedoc, and code comments. Fixes #29 (#30) 2021-08-22 21:01:40 -04:00
.prettierrc.js Initial commit. 2020-08-19 13:29:37 -04:00
deploy.sh Adding new version to deploy. 2021-01-20 10:35:12 -05:00
LICENSE Initial commit. 2020-08-19 13:29:37 -04:00
package.json Updating reporting API. (#32) 2021-09-28 10:38:49 +00:00
README.md Remove support / donate section. 2021-08-22 22:48:38 -04:00
tsconfig.json Initial commit. 2020-08-19 13:29:37 -04:00
yarn.lock Fix defined in links via docker. (#31) 2021-09-01 10:52:23 -04:00

GitHub tag (latest SemVer) GitHub issues License GitHub stars

lemmy-js-client

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

Installation

yarn add lemmy-js-client

Usage

Websocket Client

LemmyWebsocket docs

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

let client: LemmyWebsocket = new LemmyWebsocket();

let form: Login {
  username_or_email: "my_email@email.tld",
  password: "my_pass",
};

this.ws.send(client.login(form));

HTTP Client

LemmyHttp docs

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

let baseUrl = 'https://lemmy.ml';
let client: LemmyHttp = new LemmyHttp(baseUrl, headers?);
let jwt = await client.httpLogin(loginForm).jwt;