/home/desid573/public_html/smee-client-master
NameSizeModeActions
.github/-0755rm
bin/-0755rm
test/-0755rm
.gitignore900644editdlrm
.travis.yml2160644editdlrm
codecov.yml1850644editdlrm
index.js17820644editdlrm
LICENSE8080644editdlrm
package-lock.json2228530644editdlrm
package.json9560644editdlrm
README.md12070644editdlrm
Edit: /home/desid573/public_html/smee-client-master/README.md (1207B)

smee-client

Client and CLI for smee.io, a service that delivers webhooks to your local development environment.

NPM Build Status Codecov

Looking for probot/smee.io?

## Installation Install the client with: ``` $ npm install -g smee-client ``` ## Usage ### CLI The `smee` command will forward webhooks from smee.io to your local development environment. ``` $ smee ``` Run `smee --help` for usage. ### Node Client ```js const SmeeClient = require('smee-client') const smee = new SmeeClient({ source: 'https://smee.io/abc123', target: 'http://localhost:3000/events', logger: console }) const events = smee.start() // Stop forwarding events events.close() ```