The problem
So you're stuck in .NET world (maybe with Sitecore or some other God forsaken creation) and you need to do some front-end code. How the hell do you get started?
The solution
Use dotnet core 2.0.0. Scaffold your application, install all the required dependencies and start the application in development mode
$ sudo apt-get install dotnet-sdk-2.0.0
$ dotnet new --install Microsoft.AspNetCore.SpaTemplates::*
$ dotnet new vue -n hello-world
$ cd hello-world
$ dotnet restore
$ npm install
$ ASPNETCORE_ENVIRONMENT="Development" dotnet run
Happy coding
No comments:
Post a Comment