ezDB is the world's most developer friendly database platform

// Create a table
fetch("https://api.ezdb.com/v1/tables", {
  method: "POST",
  body: JSON.stringify({
    name: "users",
    schema: {
      name: "string",
      age: "number",
    },
  }),
});

// Insert a document
fetch("https://api.ezdb.com/v1/tables/users", {
  method: "POST",
  body: JSON.stringify({
    name: "John Doe",
    age: 21,
  }),
});

// Query a document
fetch("https://api.ezdb.com/v1/tables/users", {
  method: "GET",
  body: JSON.stringify({
    name: "John Doe",
  }),
});

Built with serverless in mind

Serverless microservices have a place in modern architecture. ezDB embraces this by replacing a tcp pool with a built-in high performance http endpoint.

Built with pricing in mind

Storing and processing data should not be as expensive as it is. The ezDB team works tirelessly to bring down the price of hosting, for the benefit of everyone!

Built with DX in mind

SQL is hard. Documents are easier. ORMs are hard. API requests are easier. Still difficult? We'll guide you through it all with our AI helpbot.

Built with open source in mind

Both the CLI and all language drivers are fully open source. Never get stuck by a bug that could be easily solved in the source ever again!

Copyright © 2023 ezDB team
All rights reserved.