Skip to content
/ horse Public
forked from HashLoad/horse

Fast, opinionated, minimalist web framework for Delphi

License

Notifications You must be signed in to change notification settings

sonjli/horse

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

horse

Fast, opinionated, minimalist web framework for Delphi

For install in your project using boss:

$ boss install github.com/HashLoad/horse

Sample Horse Server

uses
  Horse;
var
  App: THorse;
begin
  App := THorse.Create(9000);

  App.Get('/ping',
    procedure(Req: THorseRequest; Res: THorseResponse; Next: TProc)
    begin
      Res.Send('pong');
    end);
    
  App.Start;
end.

About

Fast, opinionated, minimalist web framework for Delphi

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Pascal 100.0%