New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

giuseppe-reqres-plugin

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

giuseppe-reqres-plugin

giuseppe plugin that adds @Req and @Res from v1 back.

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

giuseppe request response plugin

This is a plugin for giuseppe which adds a @Req and a @Res parameter definition. Those definitions do inject the corresponding express object. @Req does inject the express request and @Res the express response object. So you have full control over what you do in your routes.

Note that the @Res parameter has the canHandleResponse flag set to true. Which means you need to actually handle the response in the route. Giuseppe won't run the result of your method through the return type handler.

A bunch of badges

Build Status Build Status npm Coverage status semantic-release Greenkeeper badge

Installation

To install this package, simply run

NPM

How to use

This is an example for a request injection:

import { Giuseppe, Controller, Get } from 'giuseppe';
import { GiuseppeReqResPlugin, Req } from 'giuseppe-reqres-plugin';
import { Request } from 'express';

@Controller()
class Ctrl{
    @Get()
    public func(@Req() request: Request): string {
        return request.get('Accept-Language'); // just return the string value of the header Accept-Language
    }
}

const app = new Giuseppe();
app.registerPlugin(new GiuseppeReqResPlugin());
app.start();

This is an example for a response injection:

import { Giuseppe, Controller, Get } from 'giuseppe';
import { GiuseppeReqResPlugin, Res } from 'giuseppe-reqres-plugin';
import { Response } from 'express';

@Controller()
class Ctrl{
    @Get()
    public func(@Res() response: Response): void {
        request
            .send('Foobar')
            .status('404')
            .end();
    }
}

const app = new Giuseppe();
app.registerPlugin(new GiuseppeReqResPlugin());
app.start();

Changelog

The changelog is generated by semantic release and is located under the release section.

Licence

This software is licenced under the MIT licence.

Keywords

FAQs

Package last updated on 28 Jun 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc