libraries without dependencies
@olafurpg would like to have a query to find libs without deps so he can run dotty migration test
Being able to query things like
dependencies<1 AND
stars>100
would be really cool (and useful in my case). Either via the web browser interface or some API.
we need a graph to do those queries.
I think a relational database is also fit for the task, since I'm not concerned with recursive or transitive dependencies. However, I would also be happy with a csv file dump in form of something like
// table: dependencies
project1, project2
...
// table: stars
project1, N
...
I'm sure other folks could do cool stuff with the raw data.
The data fits in memory and take ~1 minute to load. You can start a repl session with this in memory: https://github.com/scalacenter/scaladex/blob/master/data/src/main/scala/ch.epfl.scala.index.data/elastic/SeedElasticSearch.scala#L68
you will get a List[(Project, Set[Release])]
Amazing, I'll take a look when I have time.