Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cepharum/ipp

Package Overview
Dependencies
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cepharum/ipp

parsing and creating IPP messages

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
2
Weekly downloads
 
Created
Source

IPP Message Processor

pipeline status coverage report

(c) cepharum GmbH, http://cepharum.de

License

MIT

About

This library provides parsing and generation of RFC8011 IPP messages. In addition it contains code for parsing IPP message from stream forwarding all body data following parsed IPP message to be processed separately, e.g. for storing or instantly processing it. Eventually, there is a middleware for use with express or compatible server applications to conveniently discover IPP messages in incoming requests.

Install

npm i @cepharum/ipp

Usage

const { IPPMessage } = require( "@cepharum/ipp" );

const parsed = new IPPMessage( rawMessage );
const response = parsed.deriveResponse();
const encoded = response.toBuffer();

It comes with a middleware generator suitable for use with Express server-side framework:

const IPP = require( "@cepharum/ipp" );

app.use( IPP.middleware() );

app.post( ( req, res ) => {
    // req.body.message is instance of IPPMessage here
    // req.body.data is a Readable stream providing payload of IPP message
} );

The same middleware generator is suitable for injecting into Hitchy server-side framework as well:

const IPP = require( "@cepharum/ipp" );

exports.policies = {
    "POST /": IPP.middleware(),
};

exports.routes = {
    "POST /"( req, res ) {
        // this.local.ipp.message is instance of IPPMessage here
        // this.local.ipp.data is a Readable stream providing payload of IPP message
    }
};

Relax Syntax Rules

When implementing IPP services there are some situations when RFC 8011 is contradictory in itself, when it comes to enforcing syntax rules on keywords in section. By supporting global options you can put this library into relaxed mode:

const IPP = require( "@cepharum/ipp" );

IPP.setGlobalOption( "relaxKeywordSyntax", true );

...

FAQs

Package last updated on 15 Apr 2020

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