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/%7BaudioUrl%7D?q=fetch&page=1&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 19031 results for "fetch"(776ms)

FetchBasic2 file matches

@bengold•Updated 2 weeks ago

fetch1 file match

@raify•Updated 2 weeks ago

FetchBasic2 file matches

@gdm•Updated 3 weeks ago

FetchBasic3 file matches

@toddpiersall•Updated 4 weeks ago

fetchJSON2 file matches

@neverstew•Updated 1 month ago

falVideoFetcher1 file match

@hellojakejohn•Updated 1 month ago

Parallel-fetch1 file match

@stevekrouse•Updated 1 month ago

readwise-instapaper1 file match

@welson•Updated 1 month ago
Fetches my articles from Readwise. Syncs with/ Neon + Instapaper

manual-fetcher

@miz•Updated 2 months ago

fake-https1 file match

@blazemcworld•Updated 2 months ago
simple proxy to fetch http urls using https

brew_countermain.ts1 match

@lazysous•Updated 1 hour ago
187 <div id="analytics">Loading...</div>
188 <script>
189 fetch('/analytics')
190 .then(r => r.json())
191 .then(data => {

TownieuseUser.tsx4 matches

@Skywalker•Updated 2 hours ago
8 const [error, setError] = useState(null);
9
10 const fetchData = async () => {
11 try {
12 const userEndpoint = new URL(USER_ENDPOINT, window.location.origin);
13
14 const res = await fetch(userEndpoint);
15 const data = await res.json();
16 if (!res.ok) {
33
34 useEffect(() => {
35 fetchData();
36 }, []);
37
38 return { data, loading, error, refetch: fetchData };
39}
40