> val-town-sdk
You are an expert in Val Town, the social platform for writing and deploying serverless TypeScript functions. You help developers create HTTP endpoints, cron jobs, email handlers, and reactive scripts that run in the cloud with zero infrastructure — each function (val) gets an instant URL, can be forked/remixed, and uses built-in SQLite, blob storage, and email sending.
curl "https://skillshub.wtf/TerminalSkills/skills/val-town-sdk?format=md"Val Town — Social Serverless Functions
You are an expert in Val Town, the social platform for writing and deploying serverless TypeScript functions. You help developers create HTTP endpoints, cron jobs, email handlers, and reactive scripts that run in the cloud with zero infrastructure — each function (val) gets an instant URL, can be forked/remixed, and uses built-in SQLite, blob storage, and email sending.
Core Capabilities
HTTP Endpoints
// @user/api — Instantly gets https://user-api.web.val.run
export default async function(req: Request): Promise<Response> {
const url = new URL(req.url);
if (url.pathname === "/api/hello" && req.method === "GET") {
return Response.json({ message: "Hello from Val Town!" });
}
if (url.pathname === "/api/submit" && req.method === "POST") {
const body = await req.json();
// Built-in SQLite
const { sqlite } = await import("https://esm.town/v/std/sqlite");
await sqlite.execute(
`INSERT INTO submissions (name, email, message) VALUES (?, ?, ?)`,
[body.name, body.email, body.message],
);
// Built-in email
const { email } = await import("https://esm.town/v/std/email");
await email({ subject: `New submission from ${body.name}`, text: body.message });
return Response.json({ success: true });
}
// Serve HTML
return new Response(`
<html><body>
<h1>My API</h1>
<form action="/api/submit" method="POST">
<input name="name" placeholder="Name" />
<input name="email" placeholder="Email" />
<textarea name="message"></textarea>
<button>Submit</button>
</form>
</body></html>
`, { headers: { "Content-Type": "text/html" } });
}
Cron Jobs
// @user/dailyDigest — Runs on schedule
export default async function() {
const { sqlite } = await import("https://esm.town/v/std/sqlite");
const { email } = await import("https://esm.town/v/std/email");
// Fetch data
const stats = await sqlite.execute(`
SELECT COUNT(*) as total, DATE(created_at) as day
FROM submissions WHERE created_at > datetime('now', '-1 day')
GROUP BY day
`);
// Fetch external data
const hnTop = await fetch("https://hn.algolia.com/api/v1/search?tags=front_page&hitsPerPage=5");
const hn = await hnTop.json();
await email({
subject: `Daily Digest — ${new Date().toLocaleDateString()}`,
html: `<h2>Stats</h2><p>${stats.rows[0]?.total || 0} submissions today</p>
<h2>HN Top Stories</h2>
<ul>${hn.hits.map(h => `<li><a href="${h.url}">${h.title}</a></li>`).join("")}</ul>`,
});
}
// Set schedule in Val Town UI: "0 9 * * *" (9 AM daily)
Blob Storage
import { blob } from "https://esm.town/v/std/blob";
// Store
await blob.setJSON("config", { theme: "dark", apiVersion: 2 });
// Retrieve
const config = await blob.getJSON("config");
// Binary files
await blob.set("avatar.png", imageBuffer);
const avatar = await blob.get("avatar.png");
Installation
No installation needed — write code directly at val.town
Each val gets a URL: https://username-valname.web.val.run
Import other vals: import { myFunc } from "https://esm.town/v/username/valname"
Best Practices
- Instant deployment — Every save deploys; no build step, no CI, no infrastructure
- Built-in SQLite — Use
std/sqlitefor persistent data; no database setup needed - Built-in email — Use
std/emailto send emails; no SMTP config, just call the function - Fork and remix — Any public val can be forked; build on others' work
- Secrets — Store API keys in Val Town environment variables; accessed via
Deno.env.get("KEY") - Import from URLs — Import npm packages, other vals, or any ESM URL; Deno-compatible imports
- Cron scheduling — Set cron expressions in the UI; reliable scheduled execution
- Free tier — Generous free tier for hobby projects; great for prototyping, webhooks, bots, and monitoring scripts
> related_skills --same-repo
> zustand
You are an expert in Zustand, the small, fast, and scalable state management library for React. You help developers manage global state without boilerplate using Zustand's hook-based stores, selectors for performance, middleware (persist, devtools, immer), computed values, and async actions — replacing Redux complexity with a simple, un-opinionated API in under 1KB.
> zoho
Integrate and automate Zoho products. Use when a user asks to work with Zoho CRM, Zoho Books, Zoho Desk, Zoho Projects, Zoho Mail, or Zoho Creator, build custom integrations via Zoho APIs, automate workflows with Deluge scripting, sync data between Zoho apps and external systems, manage leads and deals, automate invoicing, build custom Zoho Creator apps, set up webhooks, or manage Zoho organization settings. Covers Zoho CRM, Books, Desk, Projects, Creator, and cross-product integrations.
> zod
You are an expert in Zod, the TypeScript-first schema declaration and validation library. You help developers define schemas that validate data at runtime AND infer TypeScript types at compile time — eliminating the need to write types and validators separately. Used for API input validation, form validation, environment variables, config files, and any data boundary.
> zipkin
Deploy and configure Zipkin for distributed tracing and request flow visualization. Use when a user needs to set up trace collection, instrument Java/Spring or other services with Zipkin, analyze service dependencies, or configure storage backends for trace data.