GitXplorerGitXplorer
l

dar

public
1 stars
0 forks
0 issues

Commits

List of commits on branch main.
Verified
23f2a98fd61c33280e5731e191480b5675cd1cff

Update README.md

llkwr committed a year ago
Unverified
d8cddf4bac1314ed82ea1a957d23569d0ab80578

chore: update readme

llkwr committed 3 years ago
Unverified
9911ae006e941ab75627ae2813c9111cd84639e9

chore: renamed module

llkwr committed 3 years ago
Unverified
624c6e865d87cad0843a4b7be0dd737abd7d55da

chore: update readme

llkwr committed 3 years ago
Verified
582a4f75eee10e90fdb109832527eb7714528cab

feat: validator support for body prop (#1)

llkwr committed 3 years ago
Unverified
d5bf8d15276e5ecb025ab25fd312ac2325166784

fixed bug when returning objects (like json)

llkwr committed 3 years ago

README

The README file for this repository.

This project is unmaintained, take a look at the successor SentiumJS!

This project is currently experimental and may not work properly! If you find any bug, please write an issue.

DAR
DAR

A TypeScript Decorator based API router for Deno.

Made for Deno Licence MIT Latest version Latest commit Status WIP

Key FeaturesIntroductionHow To UseExampleCreditsLicense

Key Features

  • Typescript with Decorators
  • Made for Deno
  • Lightweight
  • Zero third party dependencies (only std & my own modules (x/vade))
  • Highly customizable
  • Controller nesting (using @Include())
  • Native URLPattern routing

Introduction

DAR (formerly Pterosaur) stands for "Decorator based API Router" and is aimed to be used as a REST API Server, which primarily uses JSON data. It is built to support Deno Deploy.

How To Use

DAR is available via Deno's Thrid Party Modules.

import { ... } from 'https://deno.land/x/dar/mod.ts';

Create a simple controller class.

@Controller()
class SomeClass {
    // Methods here
}

Create a simple get method.

@Get()
someMethod() {
    return { success: true }
}

Create the application

const app: Application = new Application({
    controller: [SomeClass],
});

And register the handler. We use Deno's Standard Library

await serve((request: Request) => app.handle(request), { port: 8080 });

And all together

import { ... } from 'https://deno.land/x/dar/mod.ts';

@Controller()
class SomeClass {
    @Get()
    someMethod() {
        return { success: true }
    }
}

const app: Application = new Application({
    controller: [SomeClass],
});

await serve((request: Request) => app.handle(request), { port: 8080 });

Run the example

$ deno run --allow-net https://deno.land/x/dar/examples/basic.ts

Known issues

  • Include decorator not working in Deno Deploy. Need to use controller options to nest controllers!

You may also like...

  • Alosaur - Another decorator based router

Credits

This software uses the following open source projects:

License

MIT


Homepage luke.id  ·  GitHub @lkwr  ·  Twitter @wlkrlk