appcd-response

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

Usage no npm install needed!

<script type="module">
  import appcdResponse from 'https://cdn.skypack.dev/appcd-response';
</script>

README

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.