Skip to content

Instantly share code, notes, and snippets.

View eloisetaylor5693's full-sized avatar

Eloise eloisetaylor5693

  • FutureLearn
  • London
View GitHub Profile
@eloisetaylor5693
eloisetaylor5693 / Npm vs nuget.md
Last active May 8, 2021 10:04
Node for .net Developers

Node for .net Developers

NPM is the package manager and build tool for Node.

NPM .net .net core CLI syntax
npm install Nuget Package Restore dotnet restore
npm install packagename Install package dotnet add package <package_name>
npm build Build dotnet build
npm start Run dotnet run