From ecc331f03c434c1d194ac36a70dbaa633ddf54ec Mon Sep 17 00:00:00 2001 From: Theresa Henze Date: Thu, 27 Oct 2022 14:40:59 +0200 Subject: [PATCH] chore: add articles for c#, HotChocolate and Svelte --- radar/2022-10-12/.gitkeep | 1 - radar/2022-10-12/csharp.md | 9 +++++++++ radar/2022-10-12/hotchocolate.md | 10 ++++++++++ radar/2022-10-12/svelte.md | 11 +++++++++++ 4 files changed, 30 insertions(+), 1 deletion(-) delete mode 100644 radar/2022-10-12/.gitkeep create mode 100644 radar/2022-10-12/csharp.md create mode 100644 radar/2022-10-12/hotchocolate.md create mode 100644 radar/2022-10-12/svelte.md diff --git a/radar/2022-10-12/.gitkeep b/radar/2022-10-12/.gitkeep deleted file mode 100644 index 8b13789..0000000 --- a/radar/2022-10-12/.gitkeep +++ /dev/null @@ -1 +0,0 @@ - diff --git a/radar/2022-10-12/csharp.md b/radar/2022-10-12/csharp.md new file mode 100644 index 0000000..fbed6b6 --- /dev/null +++ b/radar/2022-10-12/csharp.md @@ -0,0 +1,9 @@ +--- +title: "C#" +ring: adopt +quadrant: "languages-and-frameworks" +featured: true +--- + +C# is a statically, strongly typed and object-oriented language. +After PHP and several JVM languages, we also have projects with C#. We value all features of this highly developed language. diff --git a/radar/2022-10-12/hotchocolate.md b/radar/2022-10-12/hotchocolate.md new file mode 100644 index 0000000..e853ebf --- /dev/null +++ b/radar/2022-10-12/hotchocolate.md @@ -0,0 +1,10 @@ +--- +title: "Hot Chocolate" +ring: assess +quadrant: "languages-and-frameworks" +featured: true +--- + +[Hot Chocolate](https://chillicream.com/docs/hotchocolate/v12) is an open-source GraphQL server for .NET. +It is compatible to many GraphQL clients and tools and is really easy to setup and use. We assess it in one of our +projects as an alternative to [GraphQL .NET](https://graphql-dotnet.github.io/docs/getting-started/introduction/). diff --git a/radar/2022-10-12/svelte.md b/radar/2022-10-12/svelte.md new file mode 100644 index 0000000..7e4f2dd --- /dev/null +++ b/radar/2022-10-12/svelte.md @@ -0,0 +1,11 @@ +--- +title: "Svelte" +ring: assess +quadrant: "languages-and-frameworks" +featured: true +--- + +[Svelte](https://svelte.dev/) is neither a language nor a framework, but actually a compiler. It compiles HTML templates to specialized code that +manipulates the DOM directly, which may reduce the size of transferred files and give better client performance. + +It is surprisingly easy to work with, and we currently assess it in an internal project.