1.1.5 • Published 3 years ago

grin-server v1.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

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);
    }
}
1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago

0.1.8

3 years ago

0.1.7

3 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago