HACKER Q&A
📣 justaguyhere

How do you keep track of new versions of libraries, especially CSS/JS?


It is a bit easier to keep track on the server side, but how do you keep track on the client side of things? Say if there is a new version of bootstrap CSS or jQuery, do you use any trick (other than manually checking)?


  👤 wakatime Accepted Answer ✓
We use these to parse dependencies and auto-update:

https://www.npmjs.com/package/npm-check-updates

https://pypi.org/project/pur/


👤 jfowl
If you are using GitHub: Dependabot helps a lot.