Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/drash/src/modules/chains/RequestChain/mod.native.ts>Chain

A microframework for building JavaScript HTTP applications. Runtime-agnostic. Strongly typed.
Latest
class Chain
import { Chain } from "https://deno.land/x/drash@v3.0.0-beta.2/src/modules/chains/RequestChain/mod.native.ts";

This class' purpose is to make importing this module not look and feel weird. For example, we want the import and require statements to look like:

const { Chain, Resource } = require("...");
import { Chain, Resource } from "...";

We do not want this (this is fugly):

const { builder, Resource } = require("...");
import { builder, Resource } from "...";