appcd-response

3.0.7 • Public • Published

appcd-response

Library for responses and errors with i18n support and error codes.

Visit https://github.com/appcelerator/appc-daemon for more information.

Report issues to GitHub issues. Official issue tracker in JIRA.

Installation

npm i appcd-response

Usage

import Response from 'appcd-response';
import { codes } from 'appcd-response';

const msg1 = new Response('foo!');

const msg2 = new Response(codes.OK);

const msg3 = new Response(codes.OK, 'foo!');
import { AppcdError } from 'appcd-response';

throw new AppcdError(codes.BAD_REQUEST, 'Missing something important');
import { createErrorClass } from 'appcd-response';

const MyError = createErrorClass('MyError', {
	defaultStatus:     codes.BAD_REQUEST,
	defaultStatusCode: codes.PLUGIN_BAD_REQUEST
});

const err = new MyError('Something bad');
assert(err instanceof AppcdError);
assert(err instanceof Error);

Legal

This project is open source under the Apache Public License v2 and is developed by Axway, Inc and the community. Please read the LICENSE file included in this distribution for more information.

/appcd-response/

    Package Sidebar

    Install

    npm i appcd-response

    Weekly Downloads

    82

    Version

    3.0.7

    License

    Apache-2.0

    Unpacked Size

    77 kB

    Total Files

    44

    Last publish

    Collaborators

    • cb1kenobi
    • awam
    • tisdk