Floco: Over 1,600 Node.js packages live

The floco Node.js+Nix framework’s beta progress is plugging along. The tooling has turned out a healthy set of over 1,600 packages this weekend that are available as installables, legacyPackages, and as a module that can be used in combination with any other floco project.

I haven’t fleshed out a README on the monorepo yet, but you likely know the drill by now: nix flake show github:aakropotkin/floco;.

And the floco repo containing documentation, and the tools used to generate the package definitions: GitHub - aakropotkin/floco: Using Nix to put NPM and Yarn in a coffin

3 Likes
nix flake show github:aakropotkin/flocoPackages --json  \
  |jq -r '.packages["x86_64-linux"]|keys';

That’s my language :heart:

❯ nix flake show github:aakropotkin/flocoPackages --json --legacy  \
  |jq -r '.packages["x86_64-linux"]|keys|.[]' | wc -l
1640
1 Like

Nice! I wish I could do this for PHP (https://packagist.org) !

1 Like