You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

simple-protocol-helpers

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-protocol-helpers

A small library for using simple protocol

1.0.1
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

What is simple protocol?

Simple protocol is simple:

  • Never intentionally throw exceptions.
  • Return a valid JSON object like this for a success:
{
  success: true,
  payload: {
    // the result of the operation, i.e. an http response body
  }
}
  • Return a valid JSON object like this for an error:
{
  success: false,
  error: {
    // error details or object
  }
}

That's it! Both success and error cases are handled the same way and can follow the same code path.

FAQs

Package last updated on 08 Jul 2017

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