new events data endpoint

This commit is contained in:
tree🌴 2024-01-25 20:49:54 +01:00
parent 8ec1fc72fe
commit 02da88627b
1 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import YAML from 'npm:yaml'
const response = await fetch("https://raw.githubusercontent.com/web3privacy/events/main/events/events.yaml")
const events = YAML.parse(await response.text())
await Deno.writeTextFile("./src/events.json", JSON.stringify(events, null, 2))
const response = await fetch("https://data.web3privacy.info/")
const data = await response.json()
await Deno.writeTextFile("./src/events.json", JSON.stringify(data.events, null, 2))
console.log(`File ./src/events.json saved`)