atmospherejs.com : 结果搜索按下载次数排序

atmospherejs.com : Result search sorted by number of downloads

我正在使用 atmospherejs.com 搜索包,但不幸的是它没有提供任何标准来对结果进行排序:例如,如果我想按下载次数排序。

有没有办法获得按某些标准排序的查询结果:下载次数、评级、新包等

谢谢

我不这么认为,但你可以使用气氛API获取原始数据然后过滤和排序:

# get raw data
curl --header "Accept: application/json" https://atmospherejs.com/a/packages > /tmp/all.json

# process the json array in whatever way you want, for instance here
# only consider packages starting with an "f", then sort by installs per year
node -e "x = require('/tmp/all.json'); \
   console.log(x.filter(function(a) { return a.name[0] == 'f'; })\
     .sort(function(a,b) { return a['installs-per-year'] < b['installs-per-year']; }));"