amaui-org / amaui-models

Models

Home Page:https://docs.amaui.me/library/models

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool



amaui logo

amaui Models

Models


MIT license     Production ready     UMD 4.2kb gzipped     100% test cov     Browser and Nodejs

Very simple code     Modern code     Junior friendly     Typescript     Made with đź’›


Getting started

Add

yarn add @amaui/models 

Use

  import express from 'express';
  import { Query, Response } from '@amaui/models';

  async function route(req: express.Request, res: express.Response) {
    const query = Query.fromRequest(req);

    const response = await todoCollection.searchMany(query);

    return res.status(200).json(Response.fromQuery(response));
  }

  // etc.

Dev

Install

yarn

Test

yarn test

Prod

Build

yarn build