Skip to content
/ jin Public

Jin is a HTTP web framework written in Java . It features a coffee-like API with much better performance -- up to 1x faster. If you need similar performance, get yourself some Jin.

License

Notifications You must be signed in to change notification settings

kimhyun5u/jin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jin Web Framework

Jin is a web framework written in Java. It features a coffee-like API with performance that is up to 1x faster. If you need fun and enjoy, you will love Jin.

How to Use

build.gradle

implementation 'com.kimhyun5u.jin:jin:1.0.0'

main.java

import http.Server;

public class Main {
    public static void main(String[] args) {

        Server server = Server.defaultServer(8080, 10);

        server.get("/", (ctx) -> {
                    ctx.response().setBody("Hello, World!".getBytes());
                }
        );

        server.start();
    }
}

About

Jin is a HTTP web framework written in Java . It features a coffee-like API with much better performance -- up to 1x faster. If you need similar performance, get yourself some Jin.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages