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/$2?q=fetch&page=10&format=json

For typeahead suggestions, use the /typeahead endpoint:

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

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

Found 11223 results for "fetch"(2010ms)

fetchAndParseFeeds2 file matches

@iakovos•Updated 1 year ago

fetchWeatherPrediction1 file match

@jamiedubs•Updated 1 year ago

fetchCongressTradeReports1 file match

@rodrigotello•Updated 1 year ago

fetchHeaders2 file matches

@stevekrouse•Updated 1 year ago

proxyFetch22 file matches

@alp•Updated 1 year ago

fetchFile2 file matches

@Llad•Updated 1 year ago

fetchJSON1 file match

@_•Updated 1 year ago

fetchDateMeProfiles2 file matches

@stevekrouse•Updated 1 year ago

fetchJSON2 file matches

@joey•Updated 1 year ago

fetchWikipediaContent2 file matches

@fab1an•Updated 1 year ago

sqliteExplorerAppmain.tsx4 matches

@cricks_unmixed4u•Updated 1 hour ago
1/** @jsxImportSource npm:hono/jsx **/
2
3import { modifyFetchHandler } from "https://esm.town/v/andreterron/codeOnValTown?v=50";
4import { iframeHandler } from "https://esm.town/v/nbbaier/iframeHandler";
5import { resetStyle } from "https://esm.town/v/nbbaier/resetStyle";
16import { verifyToken } from "https://esm.town/v/pomdtr/verifyToken";
17import { ResultSet, sqlite } from "https://esm.town/v/std/sqlite";
18import { reloadOnSaveFetchMiddleware } from "https://esm.town/v/stevekrouse/reloadOnSave";
19import { Hono } from "npm:hono";
20import type { FC } from "npm:hono/jsx";
175});
176
177export const handler = app.fetch;
178export default iframeHandler(modifyFetchHandler(passwordAuth(handler, { verifyPassword: verifyToken })));
205});
206
207export default app.fetch;
208