If I go the many SDF projects path, how do I share...
# sdf
s
If I go the many SDF projects path, how do I share libraries without downloading it to my computer on every project?
l
You can reference other files via module paths.
s
you can use a package manager to manage dependencies (i.e. publish to a binary repository like npm or similar) or use some facility in your version control system (e.g. with git can be submodules or subtrees)
however, in both those cases, you'd download a particular version of the dependency to your computer, by design.