42
What's the best way to monitor an API for breaking changes?
(sh.itjust.works)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
If the API does not use versioning or document changes, your only option is to use defensive programming and good error handling to figure out what breaks.
Yeah, that's what I've been doing but it's a pain to add it to each of my little scripts that consume their APIs. Thank you!