| Name | Size | Mode | Actions |
|---|---|---|---|
| .github/ | - | 0755 | rm |
| bin/ | - | 0755 | rm |
| test/ | - | 0755 | rm |
| .gitignore | 90 | 0644 | editdlrm |
| .travis.yml | 216 | 0644 | editdlrm |
| codecov.yml | 185 | 0644 | editdlrm |
| index.js | 1782 | 0644 | editdlrm |
| LICENSE | 808 | 0644 | editdlrm |
| package-lock.json | 222853 | 0644 | editdlrm |
| package.json | 956 | 0644 | editdlrm |
| README.md | 1207 | 0644 | editdlrm |
/home/desid573/public_html/smee-client-master/README.md (1207B)
Client and CLI for smee.io, a service that delivers webhooks to your local development environment.
## 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() ```