UNPKG

stub-server

Version:

Stub server which do response depends on json configuration file

10 lines (8 loc) 191 B
function Response() { this.statusCode = 200; this.headers = []; this.contentType = 'text/html'; this.body = ''; // TODO: add cookies } module.exports = Response;