Tips for searching open source projects on GitHub (reprinted on WeChat)

  • in:name xxx //Search by project name

  • in:readme xxx // Search according to README

  • in:description xxx // Search according to description

  • On the basis of the above, add filter conditions such as:

  • stars:>xxx // The number of stars is greater than xxx

  • forks:>3000 //The number of forks is greater than xxx

  • language:xxx // The programming language is xxx

  • pushed:>YYYY-MM-DD // The last update time is greater than YYYY-MM-DD

An example is as follows: in:description microservice language:python 

Guess you like

Origin blog.csdn.net/luwei_cool/article/details/111318697