https://github.com/LemmyNet/lemmy-js-client
A javascript / typescript http and websocket client and type system for Lemmy.
https://github.com/LemmyNet/lemmy-js-client
Last synced: 2 months ago
JSON representation
A javascript / typescript http and websocket client and type system for Lemmy.
- Host: GitHub
- URL: https://github.com/LemmyNet/lemmy-js-client
- Owner: LemmyNet
- License: agpl-3.0
- Created: 2020-08-19T17:31:19.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-05-10T06:01:12.000Z (2 months ago)
- Last Synced: 2025-05-10T06:45:44.138Z (2 months ago)
- Language: TypeScript
- Size: 2.06 MB
- Stars: 144
- Watchers: 11
- Forks: 56
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-lemmy - lemmy-js-client - js-client)  (Projects / Libraries)
README

[](https://github.com/LemmyNet/lemmy-js-client/issues)
[](LICENSE)
# lemmy-js-client
A javascript / typescript http client and type system for [Lemmy](https://github.com/LemmyNet/lemmy).
## Installation
`pnpm install lemmy-js-client`
## Usage
### HTTP Client
[LemmyHttp docs](https://join-lemmy.org/docs/contributors/04-api.html)
```ts
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`
## OpenAPI
To generate OpenAPI docs, run `pnpm tsoa`
This creates two files:
- `redoc-static.html` - A static html rendering of the OpenAPI docs.
- `tsoa_build/swagger.json` - An OpenAPI / Swagger json file.To contribute, check out the [tsoa docs](https://tsoa-community.github.io/docs/).