1.0.0 • Published 10 months ago

@onesy/models v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Getting started

Add

yarn add @onesy/models 

Use

  import express from 'express';
  import { Query, Response } from '@onesy/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