Last Modified : 08 August 2026
Simple Web Checker
The Simple Web Checker monitors a URL for content changes. It fetches the page content, computes a SHA-256 hash, and compares it with the hash from the previous state. If the hash differs, an event is emitted.
Configuration
| Option | Type | Description |
|---|---|---|
| URL | String | The web page URL to monitor for changes. |
| Timeout (ms) | Integer | HTTP request timeout in milliseconds. |
How It Works
- On the first execution, the checker fetches the URL content and saves its SHA-256 hash as the initial state. No event is emitted.
- On subsequent executions, the checker fetches the URL again and compares the new hash with the stored hash.
- If the hashes differ, an event is emitted with the URL as the data payload and the new hash as the updated state.
- If the hashes match, no event is emitted and the state remains unchanged.
This trigger requires a state storage! If you didn't specify any,
this trigger will never fire an event.
Return Values
| Key | Value |
|---|---|
data |
The Full URL |
newState |
The new SHA-256 hash of the content of the URL page. |