More
coming
soon.
Easily create a full CRUD endpoint by POSTing your JSON to crud. Query, add, delete and iterate your data - all by using HTTP methods.
Don’t implement twice - get your data from a backend right from the start. No need to add state transition wiring after the fact - design with it in mind.
No need for complicated deploy strategies. Everything is online and ready for you and your team.
Let's create an user endpoint by sending the following POST request:
POST 127.0.0.1:3004/build/users { "name": "tom", "theme": "dark", "birthday": "1996-01-01T00:00:00.000Z" }
crud will create the following endpoint for us, that we can now access:
/users/{id} GET GET {id} POST {id} PUT {id} DELETE {id}
If we change our data model crud automatically cleans our database:
POST 127.0.0.1:3004/build/users { "name": "jenna", "theme": "light", "birthday": "1996-01-01T00:00:00.000Z", "lastLogin": "2022-03-15T20:01:22.614Z", }
GET 127.0.0.1:3004/build/users [{ "name": "jenna", "theme": "light", "birthday": "1996-01-01T00:00:00.000Z", "lastLogin": "2022-03-15T20:01:22.614Z", "id": "42822af8-0d95-42de-aa7f”, },]