Because we love the new Microsoft .NET command line interface we have created a Hot Chocolate server template that lets you setup a new GraphQL server in seconds.
Here is how to install the Hot Chocolate template into your dotnet CLI:
dotnet new -i HotChocolate.Templates.Server
This will pull down the Hot Chocolate server template from nuget.org and integrate it into your dotnet CLI.
Since the .NET SDKs are installed side by side the above command will only install the template into the current SDK. If you upgrade your SDK version you will need to re-run this command to install the template into your new SDK.
Moreover, if you want to update your template to a newer version first uninstall the current template version.
dotnet new -u HotChocolate.Templates.Serverdotnet new -i HotChocolate.Templates.Server
In order to create a new GraphQL server that already contains the hello world example just run the following command:
dotnet new graphql -n MyProjectName
If you also love to develop .NET in Visual Studio Code just run the following commands to get you started.
mkdir graphql-democd graphql-demodotnet new graphqlcode .
Have fun getting started.