ServiceStackApps / ReactChat

ServiceStack jQuery Chat rewritten in React + TypeScript + Redux
18 stars 7 forks source link

Outdated #1

Open jsares opened 6 years ago

jsares commented 6 years ago

When using these instructions with latest version of Visual Studio 2017, lots of things are outdated and not working anymore :

mythz commented 6 years ago

Yeah such is the case with most JS frameworks. We've developed uptodate starting SPA project templates which use the latest JS fx versions (e.g. React 16) at:

Both use the latest v5 pre-release version of ServiceStack which you can either get started with by cloning the GitHub repos in the above link or use our new dotnet-new cli tool which you can download with:

$ npm install -g servicestack-cli

View available templates with:

$ dotnet-new

And create either .NET Core 2.0 or .NET Framework Templates with:

$ dotnet-new <template> <project-name>

E.g. you can create an ASP.NET React Single Page App Template with:

$ dotnet-new react-spa-netfx ProjectName

Which downloads the react-spa-netfx and uses your Project Name.