Better monorepo support
See original GitHub issueMany projects these days are using a monorepo structure where the repo has a main package.json file which manage multiple package directories that have their own package.json files.
Generally the main package.json is fairly light on for dependencies, with the sub packages having the bulk.
For example, my workplace shows https://backyourstack.com/ioof-holdings/dependencies, which is a far shot off the full list of dependencies.
It would be great if perhaps you could scan deeper into the folder structure and extract all the package.json files for analysis.
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
11 Great Tools for a Monorepo in 2021 | Bits and Pieces
Best tools to build a monorepo. Develop, build, and publish packages, and scale development. Discover Lerna, Nx, Rush, Bit, Yarn Workspaces, and more....
Read more >A curated list of awesome Monorepo tools, software ... - GitHub
Yarn is a JavaScript dependency management tool that supports monorepos through workspaces. ... How to Use Git Shallow Clone to Improve Performance ...
Read more >Monorepo Explained
We created this resource to help developers understand what monorepos are , what benefits they can bring, and the tools available to make...
Read more >Monorepo Solutions in 2021 - Level Up Coding
Bit is one of the best tools available for Monorepos out there. It attempts to avoid most of the challenges that appear with...
Read more >What is monorepo? (and should you use it?) - Semaphore CI
Monorepos can foster rapid development workflows. ... Storage: an open-source extension for Git that adds better support for large files.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Perhaps an optional top-level file could be used to direct your search so you don’t have to recurse. E.g.
.backyourstack.yml:Similar problem: having several project in 1 repository. Example: A clojure backend with a JS client, each in their own subdirectories https://github.com/leihs/leihs-procure
It doesn’t use any tools like
lerna, and the Github API does not expose dependencies (although in some cases they must have the data internally, because they show the “Dependency Graph”), so I don’t see any obvious solution apart from recursing into subfolders (up to a a certain level).