@gh-conf/gh-conf-response
v1.0.6
Published
gh-conf response builder
Downloads
8
Readme
gh-conf-response
Response builder for gh-conf libraries
Give us a :star: if you like our work :heart:
Install
$ npm install @gh-conf/gh-conf-response
Usage
const { formatError, formatSuccess } = require("@gh-conf/gh-conf-response");
const successResponse = formatSuccess("Successfully passed", {
name: "formatSuccess",
});
console.log(successResponse);
// Output
/**
* {
* status: 'success',
* message: 'Successfully passed',
* data: {
* name: 'formatSuccess'
* }
* }
**/
const errorResposne = formatError("Error running tests", { err: "101" });
console.log(successResponse);
// Output
/**
* {
* status: 'err',
* message: 'Error running tests',
* data: {
* err: '101'
* }
* }
**/
Contributing
Interested in contributing to this project? You can log any issues or suggestion related to this library here
Read our contributing guide on getting started with contributing to the codebase