1.0.2 • Published 7 years ago

electron-fetch-transport v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

electron-fetch-transport

A transport for node-slack-sdk that uses Electron's net module. You can use this in place of the default request transport to allow the the web & rtm clients to reap the benefits of Chromium's networking stack from Electron's main process.

Installation

npm i electron-fetch-transport --save

Usage

import { RtmClient } from '@slack/client';
import netTransport from 'electron-fetch-transport';

// Use Electron's `net` module for requests
const rtm = new RtmClient(token, {
  transport: netTransport,
  ...
});