Client and CLI for smee.io, a service that delivers webhooks to your local development environment.
Install the client with:
npm install -g smee-clientThe smee command will forward webhooks from smee.io to your local development environment.
smeeRun smee --help for usage.
import SmeeClient from '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()By default, the SmeeClient API client makes use of the standard proxy server environment variables.