Val Town Code SearchReturn to Val Town

API Access

You can access search results via JSON API by adding format=json to your query:

https://codesearch.val.run/$%7Bsuccess?q=function&page=17&format=json

For typeahead suggestions, use the /typeahead endpoint:

https://codesearch.val.run/typeahead?q=function

Returns an array of strings in format "username" or "username/projectName"

Found 18182 results for "function"(1007ms)

redditTestREADME.md2 matches

@charmaine•Updated 23 hours ago
42 - Value: Your SERP API key.
43
44Without this key, the val will not function correctly.
45
46---
58- Key: `mentionsDiscord`
59- Value: Your Discord webhook URL.
60Notifications will be sent using this function:
61```
62 await discordWebhook({

image-inpaintingmain.tsx1 match

@themichaellai•Updated 23 hours ago
8 * Val Town HTTP val – returns the mask-editor page.
9 */
10export default async function(req: Request): Promise<Response> {
11 const body = "<!DOCTYPE html>" + render(<HTML />);
12 return new Response(body, {

image-inpaintingApp.tsx1 match

@themichaellai•Updated 23 hours ago
3import { useEffect, useRef, useState } from "npm:preact/hooks";
4
5export default function App() {
6 const [imageSrc, setImageSrc] = useState<string | null>(null);
7 const [ready, setReady] = useState(false);

image-inpaintinghtml.tsx1 match

@themichaellai•Updated 23 hours ago
4// import { h } from "preact";
5
6export function HTML() {
7 return (
8 <html>

pondiverseaddCreation1 match

@argmn•Updated 23 hours ago
4import { TABLE_NAME } from "./updateTable";
5
6export default async function(req: Request): Promise<Response> {
7 // body contains:
8 // - title (string)

pondiverseupdateTable1 match

@argmn•Updated 1 day ago
2
3export const TABLE_NAME = "pondiverse_creations_v5";
4export default async function(req: Request): Promise<Response> {
5 await sqlite.execute(
6 `CREATE TABLE IF NOT EXISTS ${TABLE_NAME} (

untitled-7166main.tsx1 match

@welfare•Updated 1 day ago
1// main.tsx
2
3export default async function(req: Request): Promise<Response> {
4 const url = new URL(req.url);
5

eink-frame-remixREADME.md1 match

@charmaine•Updated 1 day ago
5#### Python code for display available at https://github.com/michaelwschultz/eink-frame
6
7## Functioning Hardware
8
9| News | NASA Photo of the Day |

eink-frame-remixweather.tsx3 matches

@charmaine•Updated 1 day ago
5import { BodyWrapper, Content, Footer, Header, Headline } from "../components.tsx";
6
7function getWeatherCondition(code: number): string {
8 const conditions: { [key: number]: string } = {
9 0: "Clear sky",
27}
28
29function Render({ weather }: { weather: WEATHER_FORECAST }) {
30 return (
31 <html>
54}
55
56export default async function(req: Request): Promise<Response> {
57 // You can find your coordinates here: https://www.latlong.net/
58 const latitude = 37.5296;

eink-frame-remixweather.ts1 match

@charmaine•Updated 1 day ago
27};
28
29export default async function(
30 req: Request,
31 latitude: number = 37.5296,

getFileEmail4 file matches

@shouser•Updated 1 week ago
A helper function to build a file's email
tuna

tuna8 file matches

@jxnblk•Updated 2 weeks ago
Simple functional CSS library for Val Town
webup
LangChain (https://langchain.com) Ambassador, KubeSphere (https://kubesphere.io) Ambassador, CNCF OpenFunction (https://openfunction.dev) TOC Member.
lost1991
import { OpenAI } from "https://esm.town/v/std/openai"; export default async function(req: Request): Promise<Response> { if (req.method === "OPTIONS") { return new Response(null, { headers: { "Access-Control-Allow-Origin": "*",