Is there any tool that makes it possible to create an API using my database?

Asked

Viewed 199 times

2

I have a database all modeled and with a mass of data, now I need to develop an application that provides through a REST API this database. I have two development fronts, the frontend and the backend. Is there any way to make this database available as a REST API?

1 answer

3


The solution to this problem is postgrest. This tool makes the Postgresql database a complete REST API.

Using this tool it is possible for your frontend team to continue development work by connecting to the REST service and the backend team can replicate the API using the backend programming language of the team.

  • Another alternative is to use WCF Data Services, in this case you would not be limited to using only Postgresql, being able to migrate to another Database if necessary.

  • Cool, didn’t know WCF Data Services. Thanks for the tip!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.