Skip to content

Instantly share code, notes, and snippets.

@nktknshn
nktknshn / schema_to_types.ts
Last active August 6, 2022 15:26
Generate io-ts codecs and types for JSON data from a set of samples using jq, quicktype and io-ts-codegen
/*
Generate io-ts codecs and types for JSON data from a set of samples using jq, quicktype and io-ts-codegen
Usage:
# collect samples
for i in $(seq 1 10); do
wget -P samples/ https://api.github.com/events && sleep 2
done