Skip to main content

Dinar

A Web Framework For Deno. Simple, Easy && Cool;

Quick Start

const Application = await Dinar.createApplication();

// create a router use controller decorator
@Controller()
export class HomeController {
  // create a get method
  @Get()
  helloWorld() {
    return "hello dinar";
  }
}

Application.run();

// visite http://localhost:8080 and you will see `hello dinar` in your broswer!