Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Runs every 15 min
1
2
3
4
5
6
7
8
9
10
import { fetch } from "https://esm.town/v/std/fetch";
export function visitMetabase() {
const url = "https://metabase.jlast.repl.co/";
return fetch(url).then((res) => {
console.log(res);
// return "body" + res.body;
return "status" + res.status;
});
}
October 23, 2023