Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fredsted committed Aug 14, 2024
1 parent 4518216 commit b32d59c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/custom-actions/action-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,16 @@ Code executed with the Webhook.site JavaScript action runs in a sandbox where th
console.log(faker.internet.email())
// [email protected]
```
* [`nats`](https://www.npmjs.com/package/nats) - NATS Client
```javascript
const nats = require('nats')
const nc = nats.connect({ servers: ["demo.nats.io:4442", "demo.nats.io:4222"] });
```
* [`supabase`](https://www.npmjs.com/package/@supabase/supabase-js) - Supabase Client
```javascript
const createClient = require('supabase')
const supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key')
```

Do you need a library that isn't listed here? Please <a href="https://support.webhook.site">contact support</a>!

Expand Down
4 changes: 4 additions & 0 deletions docs/news.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ Subscribe below to receive updates about improvements and new features on Webhoo
</form>
</div>

## 10 August 2024

* NATS and Supabase clients added to JavaScript sandbox. [More info here](/custom-actions/action-types.html#utility-modules)

## 2 August 2024

* As we're planning to add more capacity, the Webhook.site IPs have partially changed. The IP `88.99.82.58` is no longer used by us. The full list of IPs that need to be whitelisted are the following: `178.63.67.106`, `178.63.67.153`, `46.4.105.116`.
Expand Down

0 comments on commit b32d59c

Please sign in to comment.