Git Product home page Git Product logo

riley's Introduction

Riley Framework

Atenção

Esse repositório tem como objetivo criar um framework para aprendizado e praticar TDD e Algoritimos.

Aviso: Comecei o projeto totalmente sem testes e sem seguir nenhuma boa prática, estou começando a restruturar o projeto para seguir o objetivo.

Quick Start

public class RileyApplication {
    public static void main(String[] args) throws Exception {
        new Riley().start();
    }
}

Hello World

public class RileyApplication {
    public static void main(String[] args) throws Exception {
        Riley.getInstance().start();
        get("/index", (ctx) -> json("Hello World"));
    }
}

Other way

public class HelloWorldController {{
    get("/index", (ctx) -> json("hello world"));
    get("/user/{user_id}", (ctx) -> json(ctx.params.get("{user_id}")));
}}

Output

____       ____  _ __              
\ \ \     / __ \(_) /__  __  __    
 \ \ \   / /_/ / / / _ \/ / / /    
 / / /  / _, _/ / /  __/ /_/ /     
/_/_/  /_/ |_/_/_/\___/\__, /      
                      /____/       

[INFO] Starting server...
[INFO] Riley Application started in development on http://localhost:3000
[INFO] Registered Route: GET /index
[INFO] Registered Route: GET /user/{user_id}

riley's People

Contributors

netodevel avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

pydawan

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.