JSON Data for kawaii logos made by several artists that are scraped every few hours and stored as a JSON static file that you can access via a link.
- If you want to check the scraped data in Github, head over to the
databranch. - If you want to see the generated types, head over to the
typesbranch.
To consume the data as an API, simply fetch to the following link:
https://raw.githubusercontent.com/alfonsusac/kawaii-logos-data/data/images.json
Modern fetch api can be used to fetch the data and parse it as JSON
const result = await fetch(`https://raw.githubusercontent.com/alfonsusac/kawaii-logos-data/data/images.json`)
.then(res => res.json())
const authors = result.dataInstall types through your favorite package manager
pnpm i kawaii-logos-data@git://github.com:alfonsusac/kawaii-logos-data.git#typesimport { Data } from "kawaii-logos-data"
const result = await fetch(`https://raw.githubusercontent.com/alfonsusac/kawaii-logos-data/data/images.json`)
.then(res => res.json()) as Data
const authors = result.data
// ^? EntriesInstallation through github are not tracked with semantic versioning so whenever there is update you need to call the update command
pnpm update kawaii-logos-dataInstallation through github doesn't have a "fixed" name, it depends on whatever name you give it when installing it (i.e logo-types@git... -> pnpm uninstall logo-types)
pnpm uninstall kawaii-logos-dataIf you want to see how the data is consumed, check out alfonsusac/service-title-logo.
Contributions are welcome
Also check out these other cool projects