lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


I see. So those are  not the most popular modules in the Lua ecosystem, but instead
the modules upon which most of the other modules depend upon (a sort of page-rank for lua modules). 
Right?

On Thu, Feb 26, 2015 at 3:10 AM, Andre Murbach Maidl <andremm@gmail.com> wrote:
> I'm curious about how you got this response. Is there any api?

A rockspec is also a Lua file, so I just loaded
each rockspec and counted which are the
dependencies that each module has.
I also used luarocks.deps.compare_versions to
get only the latest version of each module.

André