@onesy/models
v1.0.0
Published
Models
Downloads
147
Maintainers
Readme
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