- Регистрация
- 1 Мар 2015
- Сообщения
- 1,481
- Баллы
- 155
If you’ve ever built a frontend app and thought:
"Ugh, now I have to set up a backend just to store some data?"
This is for you.
Hosby is an API-first backend-as-a-service designed for front-end developers.
You define your data models → Hosby generates a complete set of secure API routes to query, insert, update, and delete data.
It's like Firebase Firestore — but with REST endpoints, auth, webhooks, and zero vendor lock-in.
How it works
1. Create a table (resource):
{
"name": "posts",
"fields": {
"title": "string",
"content": "text",
"authorId": "string"
}
}
Hosby instantly gives you REST API routes like:
| Method | Route | Description |
| ------ | -------------------------------- | -------------------------- |
| POST | /api/posts/insertOne | Insert a new post |
| GET | /api/posts/findBy?authorId=xyz | Find all posts by authorId |
| GET | /api/posts/findOne?id=... | Find one post by ID |
| PATCH | /api/posts/update | Update one or many posts |
| DELETE | /api/posts/deleteBy?id=... | Delete post by ID |
You don’t write any backend logic.
Just call the APIs from your frontend like you would with Axios, fetch, or TanStack Query.
? Security by default
? Each API key has its own permissions
? Public vs private API key separation
? Built-in auth support (email, Google, Facebook)
? Rate limiting and access rules (coming soon)
? Built for dev workflows
Test everything locally before going live
? Deploy your API instantly to production (no config)
? Webhooks: plug into Stripe, SendGrid, or your own services
? Auto-generated API docs (Postman / Swagger style)
*Example: using Hosby from the frontend *
// Create a post
await fetch("", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_PUBLIC_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
title: "Hello Dev.to!",
content: "This was created via Hosby ?",
authorId: "abc123"
})
});
No backend. No middleware. No database setup.
Just clean, ready-to-use APIs.
Ideal for:
Front-end developers building projects fast
Indie hackers validating MVPs
Bootcamp students or junior devs who don’t want to touch backend yet
Agencies & freelancers with tight deadlines
"Ugh, now I have to set up a backend just to store some data?"
This is for you.
? What is Hosby?Hosby lets you skip the backend boilerplate and gives you production-ready APIs instantly, without writing a single line of backend code.
Hosby is an API-first backend-as-a-service designed for front-end developers.
You define your data models → Hosby generates a complete set of secure API routes to query, insert, update, and delete data.
It's like Firebase Firestore — but with REST endpoints, auth, webhooks, and zero vendor lock-in.
1. Create a table (resource):
{
"name": "posts",
"fields": {
"title": "string",
"content": "text",
"authorId": "string"
}
}
Hosby instantly gives you REST API routes like:
| Method | Route | Description |
| ------ | -------------------------------- | -------------------------- |
| POST | /api/posts/insertOne | Insert a new post |
| GET | /api/posts/findBy?authorId=xyz | Find all posts by authorId |
| GET | /api/posts/findOne?id=... | Find one post by ID |
| PATCH | /api/posts/update | Update one or many posts |
| DELETE | /api/posts/deleteBy?id=... | Delete post by ID |
You don’t write any backend logic.
Just call the APIs from your frontend like you would with Axios, fetch, or TanStack Query.
? Security by default
? Each API key has its own permissions
? Public vs private API key separation
? Built-in auth support (email, Google, Facebook)
? Rate limiting and access rules (coming soon)
? Built for dev workflows
? Deploy your API instantly to production (no config)
? Webhooks: plug into Stripe, SendGrid, or your own services
? Auto-generated API docs (Postman / Swagger style)
*Example: using Hosby from the frontend *
// Create a post
await fetch("", {
method: "POST",
headers: {
"Authorization": "Bearer YOUR_PUBLIC_API_KEY",
"Content-Type": "application/json"
},
body: JSON.stringify({
title: "Hello Dev.to!",
content: "This was created via Hosby ?",
authorId: "abc123"
})
});
No backend. No middleware. No database setup.
Just clean, ready-to-use APIs.
Ideal for:
Front-end developers building projects fast
Indie hackers validating MVPs
Bootcamp students or junior devs who don’t want to touch backend yet
Agencies & freelancers with tight deadlines