JohannDev.DotNet.Web.Spa.ProjectTemplates 0.6.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This package has a SemVer 2.0.0 package version: 0.6.0+build.22.
dotnet new install JohannDev.DotNet.Web.Spa.ProjectTemplates::0.6.0
This package contains a .NET Template Package you can call from the shell/command line.

ASP.NET Core + Vite = 💖

This repository contains a dotnet project template for creating a ASP.NET Core web applications that integrates with the Vite frontend tooling.

Starting with .NET 6, the integration of ASP.NET Core with SPA-Frameworks was overhauled - more information can be found in this issue: https://github.com/dotnet/aspnetcore/issues/27887

The new, official SPA-templates are now available here: https://github.com/dotnet/spa-templates

Installation

You can install the latest version via nuget:

dotnet new --install JohannDev.DotNet.Web.Spa.ProjectTemplates

Install from Source

You can also clone this repository and build the project from source. After cloning, pack the project into a nupkg and install it via the dotnet CLI:

git clone https://github.com/johanndev/spa-templates
cd spa-templates/src/
dotnet restore
dotnet build
dotnet pack -c=Release // Prints the path to the nupkg

dotnet install -i <path/to/the/nupkg>

Usage

This example creates a new project that integrates Vue.js (via Vite) and also enables TypeScript support:

dotnet new vite -o my-vite-project --frontendFramework vue --useTypeScript
# alternative short form:
dotnet new vite -o my-vite-project -f vue -t

The templates supported by Vite (and, in extensions by this template) are:

  • vanilla
  • vue
  • react
  • preact
  • lit
  • svelte

All technologies can optionally be scaffolded with TypeScript support.

Afterwards, the project can be compiled and run; node dependencies are automatically restored on first run:

cd my-vite-project
dotnet build
dotnet run
  • net6.0

    • 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
0.6.0 926 11/11/2021
0.5.0 251 10/2/2021
0.5.0-alpha 208 10/2/2021