mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
51 lines
1.6 KiB
Markdown
51 lines
1.6 KiB
Markdown
|
<div align="center">
|
||
|
|
||
|
![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/LemmyNet/lemmy-js-client.svg)
|
||
|
[![GitHub issues](https://img.shields.io/github/issues-raw/LemmyNet/lemmy-js-client.svg)](https://github.com/LemmyNet/lemmy-js-client/issues)
|
||
|
[![License](https://img.shields.io/github/license/LemmyNet/lemmy-js-client.svg)](LICENSE)
|
||
|
![GitHub stars](https://img.shields.io/github/stars/LemmyNet/lemmy-js-client?style=social)
|
||
|
</div>
|
||
|
|
||
|
# lemmy-js-client
|
||
|
|
||
|
A javascript / typescript http and websocket client and type system for [Lemmy](https://github.com/LemmyNet/lemmy).
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
`yarn add lemmy-js-client`
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
Check out the [Lemmy HTTP / websocket API](https://dev.lemmy.ml/docs/contributing_websocket_http_api.html) for all the commands.
|
||
|
|
||
|
### Websocket
|
||
|
|
||
|
```js
|
||
|
// Set up a websocket connection
|
||
|
import { LoginForm, wsSendLogin } from 'lemmy-js-client';
|
||
|
|
||
|
public login(form: LoginForm) {
|
||
|
this.ws.send(wsSendLogin(form));
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### HTTP
|
||
|
|
||
|
TODO
|
||
|
|
||
|
## Support / Donate
|
||
|
|
||
|
Lemmy is free, open-source software, meaning no advertising, monetizing, or venture capital, ever. Your donations directly support full-time development of the project.
|
||
|
|
||
|
- [Support on Liberapay](https://liberapay.com/Lemmy).
|
||
|
- [Support on Patreon](https://www.patreon.com/dessalines).
|
||
|
- [Support on OpenCollective](https://opencollective.com/lemmy).
|
||
|
- [List of Sponsors](https://dev.lemmy.ml/sponsors).
|
||
|
|
||
|
### Crypto
|
||
|
|
||
|
- bitcoin: `1Hefs7miXS5ff5Ck5xvmjKjXf5242KzRtK`
|
||
|
- ethereum: `0x400c96c96acbC6E7B3B43B1dc1BB446540a88A01`
|
||
|
- monero: `41taVyY6e1xApqKyMVDRVxJ76sPkfZhALLTjRvVKpaAh2pBd4wv9RgYj1tSPrx8wc6iE1uWUfjtQdTmTy2FGMeChGVKPQuV`
|
||
|
|