I built a backend platform that generates REST APIs from a schema — no code, no server setup
Srikar Phani Kumar Marti has developed Crudly, a backend platform that generates REST APIs from a schema without requiring any coding or server setup. Users can create a project and add collections, which instantly provides them with live REST API endpoints. The platform simplifies backend development by handling routing and schema validation dynamically at runtime.
- ▪Crudly allows users to create a project and add collections to generate live REST APIs instantly.
- ▪The platform does not require users to write any backend code or manage server deployments.
- ▪It includes features like a built-in HTTP client, auto-generated documentation, request logs, webhooks, and an admin panel.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 2519231) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Srikar Phani Kumar Marti Posted on May 29 I built a backend platform that generates REST APIs from a schema — no code, no server setup #webdev #api #backend #buildinpublic Every side project I've shipped starts the same way: I have a frontend idea, and I immediately have to stop and go build a backend for it. Not because the backend is hard. Because it's tedious. The same patterns, every time. Define a model. Wire up routes. Handle errors. Write docs nobody reads. Set up auth.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).