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/$%7Burl%7D?q=fetch&page=719&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 8667 results for "fetch"(2713ms)

resilientFetchREADME.md2 matches

@easrng•Updated 1 year ago
1# `resilientFetch`: faster @std/fetch
2Try to fetch unproxied first, and fall back to proxied fetch if that fails.

reactExamplemain.tsx2 matches

@Negash•Updated 1 year ago
1/** @jsxImportSource https://esm.sh/react */
2import { modifyFetchHandler } from "https://esm.town/v/andreterron/codeOnValTown?v=46";
3import { sqlite } from "https://esm.town/v/std/sqlite?v=4";
4import tailwindURL from "https://esm.town/v/stevekrouse/tailwindURL";
5import { renderToString } from "npm:react-dom/server";
6
7export const reactExample = modifyFetchHandler(async (request: Request) => {
8 const url = new URL(request.url);
9 if (url.pathname === "/favicon.ico") return new Response(null, { status: 404 });

insecureSSLCertExampleREADME.md1 match

@stevekrouse•Updated 1 year ago
1This is an example call of @stevekrouse/insecureFetch
2
3Migrated from folder: Archive/insecureSSLCertExample

lua_wasi_examplemain.tsx1 match

@vladimyr•Updated 1 year ago
13
14const url = "https://unpkg.com/@antonz/lua-wasi/dist/lua.wasm";
15const result = await WASI.start(fetch(url), {
16 args: ["lua", "/program.lua"],
17 stdout: (out) => console.log(out),

signInWithValTownDemomain.tsx1 match

@easrng•Updated 1 year ago
131 );
132});
133export default signInWithValTown(app.fetch);

buttonmain.tsx2 matches

@easrng•Updated 1 year ago
5 for (const urlMatch of cssString.matchAll(urlRegex)) {
6 const originalUrl = urlMatch[1];
7 const response = await fetch(originalUrl);
8 const data = new Uint8Array(await response.arrayBuffer());
9 result = result.replace(
26 let fontCss = "";
27 try {
28 const r = await fetch(
29 "https://fonts.googleapis.com/css2?family="
30 + encodeURIComponent("IBM Plex Sans:wght@600")

usermain.tsx1 match

@easrng•Updated 1 year ago
10 profileImageUrl: string;
11}> =>
12 await (await fetch(`${API_URL}/v1/users/${id}`, {
13 headers: token
14 ? {

aliasmain.tsx1 match

@easrng•Updated 1 year ago
9 if ("valName" in params && params.token)
10 headers.Authorization = `Bearer ${params.token}`;
11 return await (await fetch(url, { headers })).json();
12}
13type UserParams = {

dbmain.tsx1 match

@sqlite•Updated 1 year ago
3
4async function execute(statement: InStatement): Promise<ResultSet> {
5 const resp = await fetch("https://sqlite-execute.web.val.run", {
6 method: "POST",
7 body: JSON.stringify({

leaderboardmain.tsx1 match

@pomdtr•Updated 1 year ago
10 const table = stripAnsi(renderTable(zip(res)));
11
12 const resp = await fetch("https://sourcecodeshots.com/api/image", {
13 method: "POST",
14 headers: {

fetchPaginatedData2 file matches

@nbbaier•Updated 3 weeks ago

FetchBasic1 file match

@fredmoon•Updated 3 weeks ago