Readme

This cron monitors a specific website for changes and sends an email notification when a change is detected.

Browserbase

Browserbase offers a reliable, high performance serverless developer platform to run, manage, and monitor headless browsers at scale. Leverage our infrastructure to power your web automation and AI agents. Get started with Browserbase for free here.

If you have any questions, reach out to developer@browserbase.com.

1
2
3
4
5
6
7
8
9
10
11
12
13
import { hasWebsiteChanged } from "https://esm.town/v/browserbase/websiteHasChanged";
import { email } from "https://esm.town/v/std/email?v=12";
export default async function(interval: Interval) {
const bbLandingChanged = await hasWebsiteChanged("https://www.browserbase.com");
console.log("bbLandingChanged", bbLandingChanged);
if (bbLandingChanged) {
email({
text: "The Browserbase landing has been updated!",
});
}
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
September 6, 2024