Get notifications when specific keywords appear in Hacker News posts.
This template will help you:
This val tracks mentions of "Val Town" on Hacker News and sends updates to a Discord webhook.
To start using this template, fork this val by clicking the fork button at the top-right corner of the page.
The CODE
box shows you the the full source code of this val, you may need to scroll down to see it.
In the CODE
box below, update the terms or phrases you want to track:
query: '"val town" || "val.town"'
This template uses a Discord webhook for notifications. You can update this to your preferred platform:
Create a Discord webhook following this guide. Save your webhook URL in your Val Town environment variables (you can find this on the left sidebar):
mentionsDiscord
await discordWebhook({
url: Deno.env.get("mentionsDiscord"),
content,
});
To switch to another platform (e.g., Slack, email, or custom webhooks), replace the discordWebhook call with the appropriate integration ((e.g., @std/email
, Slack, or anywhere else)