Giter Club home page Giter Club logo

basic-express-decorators's Introduction

basic-express-decorators

Basic Decorators for Express - Includes supports for express-validator using Typescript

Checkout this repository https://github.com/jbeduya/basic-express-decorators-demo for more information.

Installation

npm install @webgeek/basic-express-decorators

Update your tsconfig.json

Enable the following:

{
"experimentalDecorators": true,
"emitDecoratorMetadata": true
}

Usage

Let's say you have controllers folder. Create two files under it.

home.ts

import { controller, get } from "basic-express-decorators";
import { Request, Response } from 'express';

@controller()
export class HomeController {
    @get('/')
    index(req: Request, res: Response) {
        res.send('Hello World')
    }

    @get('/demo')
    demo(req: Request, res: Response) {
        res.json({ message: 'This is just a demo'})
    }
}

index.ts

export * from './home'

In your express app, do the following:

import express from 'express';
import { Router } from 'basic-express-decorators'
import './controllers'

const app = express();
app.use(Router.getInstance())

app.listen(8000, () => console.log('Listening at http://localhost:8000'))

basic-express-decorators's People

Contributors

jbeduya avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.