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/$%7BsvgDataUrl%7D?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 14091 results for "fetch"(1107ms)

fetchVerificationEmailHtml2 file matches

@petermillspaugh•Updated 1 year ago

fetchText2 file matches

@stevekrouse•Updated 1 year ago

fetchTextWithCaching2 file matches

@iakovos•Updated 1 year ago

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

Studypoor5paid.tsx1 match

@Aditya0010•Updated 21 mins ago
41
42 try {
43 const response = await fetch("/login", {
44 method: "POST",
45 headers: {

untitled-1943index.js2 matches

@mdrabiul•Updated 48 mins ago
1const cron = require("node-cron");
2const feeds = require("./feeds");
3const { fetchRelevantArticle, markPosted } = require("./fetchNews");
4const tweetNews = require("./tweetNews");
5
7const runBot = async () => {
8 console.log("🔎 Checking feeds…", new Date().toLocaleString());
9 const article = await fetchRelevantArticle(feeds);
10 if (article) {
11 const tweeted = await tweetNews(article);