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=12&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"(1325ms)

fetchHtmlDom2 file matches

@aeaton•Updated 1 year ago

fetchReadwiseList1 file match

@ofalvai•Updated 1 year ago

fetchTable2 file matches

@stevekrouse•Updated 1 year ago

proxyFetch82 file matches

@alp•Updated 1 year ago

fetchGHRepoInfo1 file match

@noartem•Updated 1 year ago

fetchCongressTradeReports1 file match

@nari•Updated 1 year ago

fetchAndStore2 file matches

@tal•Updated 1 year ago

fetchCongressTradeReports1 file match

@claytn•Updated 1 year ago

fetchCat1 file match

@cole•Updated 1 year ago

fetchRSS2 file matches

@stevekrouse•Updated 1 year ago

Studypoor5paid.tsx1 match

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

untitled-1943index.js2 matches

@mdrabiul•Updated 1 hour 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);