<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Carlos Salamanca</title>
    <description>The latest articles on DEV Community by Carlos Salamanca (@salamancacm).</description>
    <link>https://dev.to/salamancacm</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3628066%2F9c502f26-39d7-4934-b289-e47176f08759.jpg</url>
      <title>DEV Community: Carlos Salamanca</title>
      <link>https://dev.to/salamancacm</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/salamancacm"/>
    <language>en</language>
    <item>
      <title>I built a visual API generator — no code, no prompts, just clean backend projects</title>
      <dc:creator>Carlos Salamanca</dc:creator>
      <pubDate>Tue, 25 Nov 2025 00:05:42 +0000</pubDate>
      <link>https://dev.to/salamancacm/i-built-a-visual-api-generator-no-code-no-prompts-just-clean-backend-projects-5cka</link>
      <guid>https://dev.to/salamancacm/i-built-a-visual-api-generator-no-code-no-prompts-just-clean-backend-projects-5cka</guid>
      <description>&lt;p&gt;✨ &lt;strong&gt;Introduction&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;For the past few weeks, I’ve been building a tool that I personally needed for a long time:&lt;br&gt;
a way to generate complete backend projects without writing the same boilerplate over and over.&lt;/p&gt;

&lt;p&gt;The result is GenAPI — a visual API generator that lets you design your data models in a UI and then export a fully working backend project.&lt;/p&gt;

&lt;p&gt;🔗 Try it here: &lt;a href="https://thegenapi.io" rel="noopener noreferrer"&gt;https://thegenapi.io&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;(No login required — 100% free at the moment)&lt;/p&gt;




&lt;p&gt;🛠 &lt;strong&gt;Why I built this&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;As developers, we constantly repeat the same setup steps:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;creating models/entities&lt;/li&gt;
&lt;li&gt;defining controllers/services&lt;/li&gt;
&lt;li&gt;configuring routes&lt;/li&gt;
&lt;li&gt;setting up project structure&lt;/li&gt;
&lt;li&gt;writing CRUD logic&lt;/li&gt;
&lt;li&gt;preparing basic validations&lt;/li&gt;
&lt;li&gt;wiring everything into a backend framework&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After doing this hundreds of times across Node, Java, Python and PHP projects, I wanted a faster way.&lt;/p&gt;

&lt;p&gt;Not AI-generated code.&lt;br&gt;
Not templates.&lt;br&gt;
A real visual builder that outputs a clean, ready-to-run backend.&lt;/p&gt;




&lt;p&gt;🧩 &lt;strong&gt;How GenAPI works&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The workflow is very simple:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open the visual builder&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You start with an empty canvas where you can create:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Entities&lt;/li&gt;
&lt;li&gt;Fields&lt;/li&gt;
&lt;li&gt;Types&lt;/li&gt;
&lt;li&gt;Relationships&lt;/li&gt;
&lt;li&gt;Optional constraints&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;Choose your backend framework&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Once your models are ready, you pick the stack you want to export to.&lt;/p&gt;

&lt;p&gt;Right now GenAPI supports:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Java (Spring Boot)&lt;/li&gt;
&lt;li&gt;Java (Quarkus)&lt;/li&gt;
&lt;li&gt;Node.js (Express)&lt;/li&gt;
&lt;li&gt;Python (FastAPI)&lt;/li&gt;
&lt;li&gt;PHP (Laravel)&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;Download the generated ZIP&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;GenAPI creates a complete backend project with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Models / Entities&lt;/li&gt;
&lt;li&gt;Controllers&lt;/li&gt;
&lt;li&gt;Services&lt;/li&gt;
&lt;li&gt;Routes&lt;/li&gt;
&lt;li&gt;Basic CRUD logic&lt;/li&gt;
&lt;li&gt;Validations&lt;/li&gt;
&lt;li&gt;Clean folder structure&lt;/li&gt;
&lt;li&gt;Dependencies installed&lt;/li&gt;
&lt;li&gt;A README with instructions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;👉 You run it locally and it just works.&lt;/p&gt;

&lt;p&gt;No prompts.&lt;br&gt;
No AI guesswork.&lt;br&gt;
Just deterministic code based on your entities.&lt;/p&gt;




&lt;p&gt;🎁 &lt;strong&gt;New feature: Starter Templates&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;To help new users get started quickly, I’m adding starter templates inside the builder:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Blog API&lt;/li&gt;
&lt;li&gt;E-commerce&lt;/li&gt;
&lt;li&gt;Booking System&lt;/li&gt;
&lt;li&gt;CRM Lite&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These load pre-made entities so you can test the tool instantly.&lt;/p&gt;




&lt;p&gt;🚀 &lt;strong&gt;Who is GenAPI for?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This tool is ideal if you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;build prototypes frequently&lt;/li&gt;
&lt;li&gt;generate small/medium backends&lt;/li&gt;
&lt;li&gt;teach backend development&lt;/li&gt;
&lt;li&gt;want to speed up CRUD-heavy work&lt;/li&gt;
&lt;li&gt;start many client projects&lt;/li&gt;
&lt;li&gt;hate repeating boilerplate code&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;🧪 &lt;strong&gt;What I’m currently working on&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;More export options&lt;/li&gt;
&lt;li&gt;Better UI for relationships&lt;/li&gt;
&lt;li&gt;SAP CAP export (CDS-based, OData out of the box)&lt;/li&gt;
&lt;li&gt;Auto-documented APIs&lt;/li&gt;
&lt;li&gt;Advanced constraints&lt;/li&gt;
&lt;li&gt;Microservice export mode&lt;/li&gt;
&lt;li&gt;A VSCode extension to sync entities&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;🙏 &lt;strong&gt;I’d love your feedback&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Since GenAPI is still early, feedback from the dev community is extremely helpful.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Is the builder intuitive?&lt;/li&gt;
&lt;li&gt;Does the generated code look clean?&lt;/li&gt;
&lt;li&gt;What frameworks should I add next?&lt;/li&gt;
&lt;li&gt;Would this be useful in your workflow?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Comments are 100% welcome.&lt;/p&gt;

&lt;p&gt;🔗 Try it here: &lt;a href="https://thegenapi.io" rel="noopener noreferrer"&gt;https://thegenapi.io&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading! 🚀&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>backend</category>
      <category>productivity</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
