grin-server
TypeScript icon, indicating that this package has built-in type declarations

1.1.5 • Public • Published

grin-server

grin-server is a small, lightweight express-wrapper that uses TypeScript decorators and metadata.

Installation

With NPM: npm install --save grin-server

With YarnPKG: yarn add grin-server

Usage

index.ts

# index.ts
import { build } from 'grin-server';
import express from 'express';
import { App } from './App';

const bootstrap = async () => {
    let app: express.Application = build(App);
    
    app.listen(3000);
};

bootstrap();

App.ts

# App.ts
import { Server } from 'grin-server';
import helmet from 'helmet';
import Cats from './controllers/Cats';

@Server({
    controllers: [Cats],
    middlewares: [helmet()], # Express Middlewares
})
export class App {}

controllers/Cats.ts

import { Controller, Get } from 'grin-server';
import express from 'express';

let cats = [
  "Albert",
  "Moustache"
];

@Controller('/cats')
export class Cats {
    @Get('/')
    fetchCats(_: express.Request, res: express.Response) {
        res.json(cats);
    }
}

Package Sidebar

Install

npm i grin-server

Weekly Downloads

1

Version

1.1.5

License

MIT

Unpacked Size

17.7 kB

Total Files

22

Last publish

Collaborators

  • fowmc