TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

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

4 pointsby justaguyhereover 5 years ago
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)?

2 comments

wakatimeover 5 years ago
We use these to parse dependencies and auto-update:<p><a href="https:&#x2F;&#x2F;www.npmjs.com&#x2F;package&#x2F;npm-check-updates" rel="nofollow">https:&#x2F;&#x2F;www.npmjs.com&#x2F;package&#x2F;npm-check-updates</a><p><a href="https:&#x2F;&#x2F;pypi.org&#x2F;project&#x2F;pur&#x2F;" rel="nofollow">https:&#x2F;&#x2F;pypi.org&#x2F;project&#x2F;pur&#x2F;</a>
jfowlover 5 years ago
If you are using GitHub: Dependabot helps a lot.