TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: When is a project considered unmaintained and/or abandoned?

1 点作者 psion超过 6 年前
While working on a side-project in Go, I was apt to find plenty of packages and projects that had a year or more on the last modified on GitHub. In my professional world of PHP, I have a tendency to find another package that does the same thing if one is six months old. So my question, as the title says, when should we consider a project unmaintained or abandoned?

1 comment

pensatoio超过 6 年前
This sounds almost like a trick question.<p>The answer is in the definition of unmaintained. When bug reports and merge requests aren’t being addressed, it’s time to pick a different library.<p>I think the shift towards using more and smaller libraries exasperates the problem. Personally, I try to avoid using a library unless it has a stable community (multiple people actively contributing, bug reports are being addressed, possibly a roadmap) and provides a significant amount of value I couldn’t create myself within a reasonable amount of time. Value takes the form of: does X faster, is well tested, has a large enough audience for edge cases to be documented.<p>*I used “library” as a substitute for “project”