Answer the question
In order to leave comments, you need to log in
What tools and language to use for a RESTful api from scratch?
I started to write a thesis on the topic "Client-server application for android". I am well acquainted with android, but I am not familiar with backing at all. You need to write an API for simple requests. Can someone advise what would be easier to use for implementation?
Answer the question
In order to leave comments, you need to log in
Try spark
import static spark.Spark.*;
public class HelloWorld {
public static void main(String[] args) {
get("/hello", (req, res) -> "Hello World");
}
}
Slim , SIlex , Lumen are the little brothers of Laravel, Symphony. With them, you can quickly raise the service, but in fact you don’t need more.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question