<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Back End on</title><link>https://the-doc.netlify.app/docs/backend/</link><description>Recent content in Back End on</description><generator>Hugo -- gohugo.io</generator><lastBuildDate>Tue, 25 Jan 2022 14:40:56 +0100</lastBuildDate><atom:link href="https://the-doc.netlify.app/docs/backend/index.xml" rel="self" type="application/rss+xml"/><item><title>Deno</title><link>https://the-doc.netlify.app/docs/backend/deno/</link><pubDate>Wed, 09 Aug 2023 16:57:25 +0530</pubDate><guid>https://the-doc.netlify.app/docs/backend/deno/</guid><description>Early Stages Please report any error. # Let See Example
import { compile_routes, response, Router, } from &amp;quot;https://deno.land/x/the@0.0.0.4.5/mod.ts&amp;quot;; const _routes = [{ path: &amp;quot;/checlk&amp;quot;, handler: () =&amp;gt; response.JSON(&amp;quot;s&amp;quot;), }, { path: &amp;quot;/checldk&amp;quot;, method: &amp;quot;POST&amp;quot;, handler: () =&amp;gt; response.JSON(&amp;quot;s&amp;quot;), }]; const routes = compile_routes(_route); Deno.serve( { port: 3333 }, async (req: Request): Promise&amp;lt;Response&amp;gt; =&amp;gt; { return await new Router(routes).route(req); } ); If there is Method not present it get default to GET.</description></item><item><title>DotNet</title><link>https://the-doc.netlify.app/docs/backend/dotnet/</link><pubDate>Sun, 11 Jan 2026 16:24:00 +0530</pubDate><guid>https://the-doc.netlify.app/docs/backend/dotnet/</guid><description>Overview # The .NET generator works by reading your JSON models and creating corresponding C# Models and Controllers.
Configuration # Add &amp;quot;dotnet&amp;quot; to your back-end in config.json:
{ &amp;quot;back-end&amp;quot;: [&amp;quot;dotnet&amp;quot;] } Generated Structure # The Generator will output the following in the dotnet/ directory:
Models/: Contains C# classes representing your database tables. Controllers/: Contains ApiController classes with basic CRUD operations. Model Example # using System; using System.Collections.Generic; namespace DotNetApp.Models { public class User { public long Id { get; set; } public string Name { get; set; } // .</description></item><item><title>Golang</title><link>https://the-doc.netlify.app/docs/backend/golang/</link><pubDate>Sun, 11 Jan 2026 16:24:00 +0530</pubDate><guid>https://the-doc.netlify.app/docs/backend/golang/</guid><description>Overview # The Golang generator creates Go structs and Gin-Gonic compatible controllers.
Configuration # Add &amp;quot;golang&amp;quot; to your back-end in config.json:
{ &amp;quot;back-end&amp;quot;: [&amp;quot;golang&amp;quot;] } Generated Structure # The Generator will output the following in the go/ directory:
models/: Contains Go structs with JSON tags. controllers/: Contains Controller functions for handling HTTP requests. Model Example # package models import ( &amp;quot;time&amp;quot; ) type User struct { Id int64 `json:&amp;quot;id&amp;quot;` Name string `json:&amp;quot;name&amp;quot;` // .</description></item><item><title>Java Spring</title><link>https://the-doc.netlify.app/docs/backend/spring/</link><pubDate>Sun, 11 Jan 2026 16:24:00 +0530</pubDate><guid>https://the-doc.netlify.app/docs/backend/spring/</guid><description>Overview # The Java Spring generator creates standard Spring Boot Entities, Repositories, and REST Controllers.
Configuration # Add &amp;quot;spring&amp;quot; to your back-end in config.json:
{ &amp;quot;back-end&amp;quot;: [&amp;quot;spring&amp;quot;] } Generated Structure # The Generator will output the following in the spring/src/main/java/com/example/demo/ directory:
model/: Entity classes annotated with JPA annotations. repository/: Interfaces extending JpaRepository. controller/: REST Controllers. Entity Example # package com.example.demo.model; import javax.persistence.*; import lombok.Data; @Entity @Data @Table(name = &amp;quot;user&amp;quot;) public class User { @Id @GeneratedValue(strategy = GenerationType.</description></item></channel></rss>