NodeJSAndNpm 10.0.3

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package NodeJSAndNpm --version 10.0.3
NuGet\Install-Package NodeJSAndNpm -Version 10.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NodeJSAndNpm" Version="10.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NodeJSAndNpm --version 10.0.3
#r "nuget: NodeJSAndNpm, 10.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install NodeJSAndNpm as a Cake Addin
#addin nuget:?package=NodeJSAndNpm&version=10.0.3

// Install NodeJSAndNpm as a Cake Tool
#tool nuget:?package=NodeJSAndNpm&version=10.0.3

Nuget package includes:

  • Node.js v8.12.0
  • Npm v6.4.1

Usage inside of csproj

<PropertyGroup>
  <BuildDependsOn>
    NpmInstall;
    GrunAll;
    $(BuildDependsOn)
  </BuildDependsOn>
</PropertyGroup>

<Target Name="NpmInstall" BeforeTargets="BeforeBuild; BeforeClean">
  <Message Text="Installing packages"/>
  <Exec Command="$(PkgNodeJSAndNpm)\npm install --scripts-prepend-node-path" WorkingDirectory="./" />
  <Message Text="Packages are installed."/>
 </Target>
  
<Target Name="GrunAll" BeforeTargets="BeforeBuild;BeforeClean">
  <Message Text="Running grunt all"/>
  <Exec Command="$(PkgNodeJSAndNpm)\node.exe node_modules\grunt\bin\grunt all" WorkingDirectory="./" />
  <Message Text="Grunt finished."/>
</Target>

❤️ https://nodejs.org/ | Licence

❤️ https://www.npmjs.com/ | Licence

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated


           - Updated Node.js to v8.12.0
           - Updated Npm to v6.4.1