Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
feat: c.env() (#173)
Browse files Browse the repository at this point in the history
* feat: `c.env()`

* fmt

* edit
  • Loading branch information
boywithkeyboard authored Aug 16, 2023
1 parent 2676201 commit 9268017
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import { ObjectType, Payload } from './handler.ts'
import { RequestContext } from './request_context.ts'
import { ResponseContext } from './response_context.ts'

type Variables = Record<string, unknown>

const HTTP_MESSAGES = {
'Bad Request': 400,
'Unauthorized': 401,
Expand Down Expand Up @@ -92,6 +94,12 @@ export class Context<
return this.runtime === 'deno' && Deno.env.get('DEV') === 'true'
}

env<T extends keyof Variables>(name: T): Variables[T] {
return this.runtime === 'deno'
? Deno.env.get(name)
: (this.#a.env as Variables)[name]
}

get req(): RequestContext<
Params,
ValidatedBody,
Expand Down

0 comments on commit 9268017

Please sign in to comment.