In a Node.js project, I just distribute the package.json file along with the rest of the source files, and anyone who wants to use this project just runs
npm install
and all the dependencies are loaded and placed in the node_modules directory.
In the NuGet world, there is a packages.config file that looks roughly equivalent to the Node dependency section of package.json . When I open cmd.exe or PowerShell, which command executes the npm install equivalent?
Borek source share