skip to Main Content

Suppose I have a MySQL database running on a Debian Linux server and I would like to create a simple API (RESTful) to access data from this database. How would you do this, and what opensource tools would you use?

Please note I’m new to using web services so I’m not exactly sure what extra information to put here, but I’m happy to elaborate in the comments if needed.

2

Answers


  1. To write a RESTful API you can use any programming languages like Java, PHP, Ruby, Python, NodeJS etc.

    Every RESTful application you write needs a Server to test, debug and run either in development or production environment. Therefore, be sure with your task and choose the language you are familiar with and also you can use the frameworks like Laravel, Ruby on Rails, Django, Spring etc.

    Login or Signup to reply.
  2. There are so many options. You you can pick any of these frameworks for rapid development. The most popular nowadays.

    • Express (Javascript)
    • Laravel / Cake PHP (PHP)
    • Spring Boot (Java)
    • Akka HTTP (Scala)
    • Django / Flask (Python)
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search