The fastest Java web server in the West.
Feedback, suggestions, and contributions are most welcome!
- Linux >= 5.1
- Java >= 8
A fallback using java.nio.channels
packages for portability is in progress.
Hipshot will be published to Maven central once the API has stabilized.
public static void main(String[] args) {
WebServer.create((request, response) -> {
response.header("Content-Type", "text/plain")
.body("Hello from Hipshot!")
.send();
}).start();
}
MIT. Have fun and make cool things!