ptt-client
Version:
A Node client for fetching data from ptt.cc.
19 lines (16 loc) • 312 B
text/typescript
import Config from '../../config';
const config: Config = {
name: 'PTT',
url: 'wss://ws.ptt.cc/bbs',
charset: 'utf8',
origin: 'app://pcman',
protocol: 'websocket',
timeout: 200,
blobSize: 1024,
preventIdleTimeout: 30,
terminal: {
columns: 80,
rows: 24,
},
};
export default config;