yumechi-no-kuni/README.md

107 lines
2.7 KiB
Markdown
Raw Normal View History

2021-05-13 21:54:41 -05:00
# misskey.js
2021-05-16 10:07:01 -05:00
**Strongly-typed official Misskey SDK for browsers/Node.js.**
JavaScript(TypeScript)用の公式MisskeySDKです。ブラウザ/Node.js上で動作します。
以下が提供されています:
- ユーザー認証
- APIリクエスト
- ストリーミング
- ユーティリティ関数
- Misskeyの各種モデル(ノート、ユーザー等)の型定義
2021-05-13 21:54:41 -05:00
2021-05-13 22:00:58 -05:00
## Install
coming soon
2021-05-13 21:54:41 -05:00
# Usage
2021-05-16 04:30:42 -05:00
## Authenticate
todo
2021-05-13 21:54:41 -05:00
## API request
2021-05-16 04:27:21 -05:00
``` ts
import * as Misskey from 'misskey-js';
const cli = new Misskey.api.APIClient({
2021-05-22 22:15:28 -05:00
origin: 'https://misskey.test',
credential: 'TOKEN',
2021-05-16 04:27:21 -05:00
});
const meta = await cli.request('meta', { detail: true });
```
2021-05-13 21:54:41 -05:00
## Streaming
2021-05-16 04:33:08 -05:00
``` ts
import * as Misskey from 'misskey-js';
const stream = new Misskey.Stream('https://misskey.test', { token: 'TOKEN' });
2021-05-22 23:34:36 -05:00
const mainChannel = stream.useChannel('main');
2021-05-16 04:33:08 -05:00
mainChannel.on('notification', notification => {
console.log('notification received', notification);
});
```
2021-05-13 22:00:10 -05:00
2021-05-22 23:34:36 -05:00
### チャンネルへの接続
チャンネルへの接続は`useChannel`メソッドを使用します。
2021-05-16 08:23:23 -05:00
2021-05-22 23:34:36 -05:00
パラメータなし
2021-05-17 10:07:17 -05:00
``` ts
const stream = new Misskey.Stream('https://misskey.test', { token: 'TOKEN' });
2021-05-22 23:34:36 -05:00
const mainChannel = stream.useChannel('main');
2021-05-17 10:07:17 -05:00
```
2021-05-22 23:34:36 -05:00
パラメータあり
2021-05-17 10:07:17 -05:00
``` ts
const stream = new Misskey.Stream('https://misskey.test', { token: 'TOKEN' });
2021-05-22 23:34:36 -05:00
const messagingChannel = stream.useChannel('messaging', {
2021-05-17 10:07:17 -05:00
otherparty: 'xxxxxxxxxx',
});
```
### チャンネルから切断
`dispose`メソッドを呼び出します。
``` ts
const stream = new Misskey.Stream('https://misskey.test', { token: 'TOKEN' });
2021-05-22 23:34:36 -05:00
const mainChannel = stream.useChannel('main');
2021-05-17 10:07:17 -05:00
mainChannel.dispose();
```
2021-05-16 08:23:23 -05:00
### メッセージの受信
チャンネル接続インスタンスはEventEmitterを継承しており、メッセージがサーバーから受信されると受け取ったイベント名でペイロードをemitします。
2021-05-17 10:07:17 -05:00
``` ts
import * as Misskey from 'misskey-js';
const stream = new Misskey.Stream('https://misskey.test', { token: 'TOKEN' });
2021-05-22 23:34:36 -05:00
const mainChannel = stream.useChannel('main');
2021-05-17 10:07:17 -05:00
mainChannel.on('notification', notification => {
console.log('notification received', notification);
});
```
2021-05-16 08:23:23 -05:00
### メッセージの送信
チャンネル接続インスタンスの`send`メソッドを使用してメッセージをサーバーに送信することができます。
2021-05-17 10:07:17 -05:00
``` ts
import * as Misskey from 'misskey-js';
const stream = new Misskey.Stream('https://misskey.test', { token: 'TOKEN' });
2021-05-22 23:34:36 -05:00
const messagingChannel = stream.useChannel('messaging', {
2021-05-17 10:07:17 -05:00
otherparty: 'xxxxxxxxxx',
});
messagingChannel.send('read', {
id: 'xxxxxxxxxx'
});
```
2021-05-13 22:00:58 -05:00
---
2021-05-13 22:00:10 -05:00
<div align="center">
<a href="https://github.com/misskey-dev/misskey/blob/develop/CONTRIBUTING.md"><img src="./i-want-you.png" width="300"></a>
</div>