REST Client for Node.js
Features
Allows connecting to any API REST and get results as js Object. The client has the following features:
- Transparent HTTP/HTTPS connection to remote API sites.
- Allows simple HTTP basic authentication.
- Allows most common HTTP operations: GET, POST, PUT, DELETE, PATCH or any other method through custom connect method
- Allows creation of custom HTTP Methods (PURGE, etc.)
- Direct or through proxy connection to remote API sites.
- Register remote API operations as own client methods, simplifying reuse.
- Dynamic path and query parameters and request headers.
- Improved Error handling mechanism (client or specific request)
- Added support for compressed responses: gzip and deflate
- Added support for follow redirects thanks to great follow-redirects package
- Added support for custom request serializers (json,xml and url-encoded included by default)
- Added support for custom response parsers (json and xml included by default)
Installation
$ npm install node-rest-client
Usages
Simple HTTP GET
Client has two ways to call a REST service: direct or using registered methods
var Client = require('node-rest-client').Client;
var client = new Client();
client.get("http://remote.site/rest/xml/method", function (data, response) {
console.log(data);
console.log(response);
});
client.registerMethod("jsonMethod", "http://remote.site/rest/json/method", "GET");
client.methods.jsonMethod(function (data, response) {
console.log(data);
console.log(response);
});
HTTP POST
POST, PUT or PATCH method invocation are configured like GET calls with the difference that you have to set "Content-Type" header in args passed to client method invocation:
var Client = require('node-rest-client').Client;
var client = new Client();
var args = {
data: { test: "hello" },
headers: { "Content-Type": "application/json" }
};
client.post("http://remote.site/rest/xml/method", args, function (data, response) {
console.log(data);
console.log(response);
});
client.registerMethod("postMethod", "http://remote.site/rest/json/method", "POST");
client.methods.postMethod(args, function (data, response) {
console.log(data);
console.log(response);
});
If no "Content-Type" header is set as client arg POST,PUT and PATCH methods will not work properly.
Passing args to registered methods
You can pass diferents args to registered methods, simplifying reuse: path replace parameters, query parameters, custom headers
var Client = require('node-rest-client').Client;
var client = new Client();
var args = {
data: { test: "hello" },
path: { "id": 120 },
parameters: { arg1: "hello", arg2: "world" },
headers: { "test-header": "client-api" }
};
client.get("http://remote.site/rest/json/${id}/method", args,
function (data, response) {
console.log(data);
console.log(response);
});
client.registerMethod("jsonMethod", "http://remote.site/rest/json/${id}/method", "GET");
client.methods.jsonMethod(args, function (data, response) {
console.log(data);
console.log(response);
});
You can even use path placeholders in query string in direct connection:
var Client = require('node-rest-client').Client;
var client = new Client();
var args = {
path: { "id": 120, "arg1": "hello", "arg2": "world" },
headers: { "test-header": "client-api" }
};
client.get("http://remote.site/rest/json/${id}/method?arg1=${arg1}&arg2=${arg2}", args,
function (data, response) {
console.log(data);
console.log(response);
});
HTTP POST and PUT methods
To send data to remote site using POST or PUT methods, just add a data attribute to args object:
var Client = require('node-rest-client').Client;
var client = new Client();
var args = {
path: { "id": 120 },
parameters: { arg1: "hello", arg2: "world" },
headers: { "test-header": "client-api" },
data: "<xml><arg1>hello</arg1><arg2>world</arg2></xml>"
};
client.post("http://remote.site/rest/xml/${id}/method", args, function (data, response) {
console.log(data);
console.log(response);
});
client.registerMethod("xmlMethod", "http://remote.site/rest/xml/${id}/method", "POST");
client.methods.xmlMethod(args, function (data, response) {
console.log(data);
console.log(response);
});
var args_js = {
path: { "id": 120 },
parameters: { arg1: "hello", arg2: "world" },
headers: { "test-header": "client-api" },
data: { "arg1": "hello", "arg2": 123 }
};
client.methods.xmlMethod(args_js, function (data, response) {
console.log(data);
console.log(response);
});
Request/Response configuration
It's also possible to configure each request and response, passing its configuration as an
additional argument in method call.
var client = new Client();
var args = {
path: { "id": 120 },
parameters: { arg1: "hello", arg2: "world" },
headers: { "test-header": "client-api" },
data: "<xml><arg1>hello</arg1><arg2>world</arg2></xml>",
requestConfig: {
timeout: 1000,
noDelay: true,
keepAlive: true,
keepAliveDelay: 1000
},
responseConfig: {
timeout: 1000
}
};
client.post("http://remote.site/rest/xml/${id}/method", args, function (data, response) {
console.log(data);
console.log(response);
});
If you want to handle timeout events both in the request and in the response just add a new "requestTimeout"
or "responseTimeout" event handler to clientRequest returned by method call.
var client = new Client();
var args = {
path: { "id": 120 },
parameters: { arg1: "hello", arg2: "world" },
headers: { "test-header": "client-api" },
data: "<xml><arg1>hello</arg1><arg2>world</arg2></xml>",
requestConfig: {
timeout: 1000,
noDelay: true,
keepAlive: true,
keepAliveDelay: 1000
},
responseConfig: {
timeout: 1000
}
};
var req = client.post("http://remote.site/rest/xml/${id}/method", args, function (data, response) {
console.log(data);
console.log(response);
});
req.on('requestTimeout', function (req) {
console.log('request has expired');
req.abort();
});
req.on('responseTimeout', function (res) {
console.log('response has expired');
});
req.on('error', function (err) {
console.log('request error', err);
});
Follows Redirect
Node REST client follows redirects by default to a maximum of 21 redirects, but it's also possible to change follows redirect default config in each request done by the client
var client = new Client();
var args = {
requestConfig: {
followRedirects:true,
maxRedirects:10
},
responseConfig: {
timeout: 1000
}
};
Response Parsers
You can add your own response parsers to client, as many as you want. There are 2 parser types:
-
Regular parser: First ones to analyze responses. When a response arrives it will pass through all regular parsers, first parser whose match
method return true will be the one to process the response. there can be as many regular parsers as you need. you can delete and replace regular parsers when it'll be needed.
-
Default parser: When no regular parser has been able to process the response, default parser will process it, so it's guaranteed that every response is processed. There can be only one default parser and cannot be deleted but it can be replaced adding a parser with isDefault
attribute to true.
Each parser - regular or default- needs to follow some conventions:
Of course any other method or attribute needed for parsing process can be added to parser.
var invalid = {
"name":"invalid-parser",
"match":function(response){...},
"parse":function(byteBuffer,nrcEventEmitter,parsedCallback){...}
};
var validParser = {
"name":"valid-parser",
"isDefault": false,
"match":function(response){...},
"parse":function(byteBuffer,nrcEventEmitter,parsedCallback){...},
"otherAttr":"my value",
"otherMethod":function(a,b,c){...}
};
function OtherParser(name){
this.name: name,
this.isDefault: false,
this.match=function(response){...};
this.parse:function(byteBuffer,nrcEventEmitter,parsedCallback){...};
}
var instanceParser = new OtherParser("instance-parser");
client.parsers.add({
"name":"valid-parser",
"isDefault":false,
"match":function(response){
return response.headers["test-header"]==="hello world!";
},
"parse":function(byteBuffer,nrcEventEmitter,parsedCallback){
var parsedData = null;
try{
parsedData = JSON.parse(byteBuffer.toString());
parsedData.parsed = true;
nrcEventEmitter('parsed','data has been parsed ' + parsedData);
parsedCallback(parsedData);
}catch(err){
nrcEmitter('error',err);
};
});
By default and to maintain backward compatibility, client comes with 2 regular parsers and 1 default parser:
- JSON parser: it's named 'JSON' in parsers registry and processes responses to js object. As in previous versions you can change content-types used to match responses by adding a "mimetypes" attribute to client options.
var options = {
mimetypes: {
json: ["application/json", "application/my-custom-content-type-for-json;charset=utf-8"]
}
};
var client = new Client(options);
- XML parser: it's named 'XML' in parsers registry and processes responses returned as XML documents to js object. As in previous versions you can change content-types used to match responses by adding a "mimetypes" attribute to client options.
var options = {
mimetypes: {
xml: ["application/xml", "application/my-custom-content-type-for-xml"]
}
};
var client = new Client(options);
Additionally in this parser there's an attribute "options" where you can customize xml2js parser options. Please refer to xml2js package for valid parser options.
var client = new Client();
client.parsers.find("XML").options= {"explicitArray":false, "ignoreAttrs":true};
- Default Parser: return responses as is, without any adittional processing.
Parser Management
Client can manage parsers through the following parsers namespace methods:
-
add(parser)
: add a regular or default parser (depending on isDefault attribute value) to parsers registry. If you add a regular parser with the same name as an existing one, it will be overwritten
parser
: valid parser object. If invalid parser is added an 'error' event is dispatched by client.
-
remove(parserName)
: removes a parser from parsers registry. If not parser found an 'error' event is dispatched by client.
parserName
: valid parser name previously added.
-
find(parserName)
: find and return a parser searched by its name. If not parser found an 'error' event is dispatched by client.
parserName
: valid parser name previously added.
-
getAll()
: return a collection of current regular parsers.
-
getDefault()
: return the default parser used to process responses that doesn't match with any regular parser.
-
clean()
: clean regular parser registry. default parser is not afected by this method.
var client = new Client();
client.parsers.add({
"name":"valid-parser",
"isDefault": false,
"match":function(response){...},
"parse":function(byteBuffer,nrcEventEmitter,parsedCallback){...},
"otherAttr":"my value",
"otherMethod":function(a,b,c){...}
});
var parser = client.parsers.find("valid-parser");
var defaultParser = client.parsers.getDefault();
var regularParsers = client.parsers.getAll();
client.parsers.clean();
Request Serializers
You can add your own request serializers to client, as many as you want. There are 2 serializer types:
-
Regular serializer: First ones to analyze requests. When a request is sent it will pass through all regular serializers, first serializer whose match
method return true will be the one to process the request. there can be as many regular serializers as you need. you can delete and replace regular serializers when it'll be needed.
-
Default serializer: When no regular serializer has been able to process the request, default serializer will process it, so it's guaranteed that every request is processed. There can be only one default serializer and cannot be deleted but it can be replaced adding a serializer with isDefault
attribute to true.
Each serializer - regular or default- needs to follow some conventions:
Of course any other method or attribute needed for serialization process can be added to serializer.
var invalid = {
"name":"invalid-serializer",
"match":function(request){...},
"serialize":function(data,nrcEventEmitter,serializedCallback){...}
};
var validserializer = {
"name":"valid-serializer",
"isDefault": false,
"match":function(request){...},
"serialize":function(data,nrcEventEmitter,serializedCallback){...},
"otherAttr":"my value",
"otherMethod":function(a,b,c){...}
};
function OtherSerializer(name){
this.name: name,
this.isDefault: false,
this.match=function(request){...};
this.serialize:function(data,nrcEventEmitter,serializedCallback){...};
}
var instanceserializer = new OtherSerializer("instance-serializer");
client.serializers.add({
"name":"example-serializer",
"isDefault":false,
"match":function(request){
return request.headers["test-header"]==="hello world!";
},
"serialize":function(data,nrcEventEmitter,serializedCallback){
var serializedData = null;
if (typeof data === 'string'){
serializedData = data.concat(" I'm serialized!!");
}else if (typeof data === 'object'){
serializedData = data;
serializedData.state = "serialized"
serializedData = JSON.stringify(serializedData);
}
nrcEventEmitter('serialized','data has been serialized ' + serializedData);
serializedCallback(serializedData);
}
})
By default client comes with 3 regular serializers and 1 default serializer:
-
JSON serializer: it's named 'JSON' in serializers registry and serialize js objects to its JSON string representation. It will match any request sent exactly with the following content types: "application/json","application/json;charset=utf-8"
-
XML serializer: it's named 'XML' in serializers registry and serialize js objects to its XML string representation. It will match any request sent exactly with the following content types: "application/xml","application/xml;charset=utf-8","text/xml","text/xml;charset=utf-8"
Additionally in this parser there's an attribute "options" where you can customize xml2js serializer options. Please refer to xml2js package for valid builder options.
var client = new Client();
client.serializers.find("XML").options={"renderOpts":{"pretty": true }};
-
URL ENCODE serializer: it's named 'FORM-ENCODED' in serializers registry and serialize js objects to its FORM ENCODED string representation. It will match any request sent exactly with the following content types: "application/x-www-form-urlencoded","multipart/form-data","text/plain"
-
Default serializer: serialize request to its string representation, applying toString() method to data parameter.
serializer Management
Client can manage serializers through the following serializers namespace methods:
-
add(serializer)
: add a regular or default serializer (depending on isDefault attribute value) to serializers registry.If you add a regular serializer with the same name as an existing one, it will be overwritten
serializer
: valid serializer object. If invalid serializer is added an 'error' event is dispatched by client.
-
remove(serializerName)
: removes a serializer from serializers registry. If not serializer found an 'error' event is dispatched by client.
serializerName
: valid serializer name previously added.
-
find(serializerName)
: find and return a serializer searched by its name. If not serializer found an 'error' event is dispatched by client.
serializerName
: valid serializer name previously added.
-
getAll()
: return a collection of current regular serializers.
-
getDefault()
: return the default serializer used to process requests that doesn't match with any regular serializer.
-
clean()
: clean regular serializer registry. default serializer is not afected by this method.
var client = new Client();
client.serializers.add({
"name":"valid-serializer",
"isDefault":false,
"match":function(request){
return request.headers["test-header"]==="hello world!";
},
"serialize":function(data,nrcEventEmitter,serializedCallback){
var serializedData = null;
if (typeof data === 'string'){
serializedData = data.concat(" I'm serialized!!");
}else if (typeof data === 'object'){
serializedData = data;
serializedData.state = "serialized"
serializedData = JSON.stringify(serializedData);
}
nrcEventEmitter('serialized','data has been serialized ' + serializedData);
serializedCallback(serializedData);
});
var serializer = client.serializers.find("valid-serializer");
var defaultParser = client.serializers.getDefault();
var regularSerializers = client.serializers.getAll();
client.serializers.clean();
Connect through proxy
Just pass proxy configuration as option to client.
var Client = require('node-rest-client').Client;
var options_proxy = {
proxy: {
host: "proxy.foo.com",
port: 8080,
user: "proxyuser",
password: "123",
tunnel: true
}
};
var client = new Client(options_proxy);
client has 2 ways to connect to target site through a proxy server: tunnel or direct request, the first one is the default option
so if you want to use direct request you must set tunnel off.
var Client = require('node-rest-client').Client;
var options_proxy = {
proxy: {
host: "proxy.foo.com",
port: 8080,
user: "proxyuser",
password: "123",
tunnel: false
}
};
var client = new Client(options_proxy);
Basic HTTP auth
Just pass username and password or just username, if no password is required by remote site, as option to client. Every request done with the client will pass username and password or just username if no password is required as basic authorization header.
var Client = require('node-rest-client').Client;
var options_auth = { user: "admin", password: "123" };
var client = new Client(options_auth);
Options parameters
You can pass the following args when creating a new client:
var options = {
proxy: {
host: "proxy.foo.com",
port: 8080,
user: "ellen",
password: "ripley"
},
connection: {
secureOptions: constants.SSL_OP_NO_TLSv1_2,
ciphers: 'ECDHE-RSA-AES256-SHA:AES256-SHA:RC4-SHA:RC4:HIGH:!MD5:!aNULL:!EDH:!AESGCM',
honorCipherOrder: true
},
mimetypes: {
json: ["application/json", "application/json;charset=utf-8"],
xml: ["application/xml", "application/xml;charset=utf-8"]
},
user: "admin",
password: "123",
requestConfig: {
timeout: 1000,
noDelay: true,
keepAlive: true,
keepAliveDelay: 1000
},
responseConfig: {
timeout: 1000
}
};
Note that requestConfig and responseConfig options if set on client instantiation apply to all of its requests/responses
and is only overriden by request or reponse configs passed as args in method calls.
Managing Requests
Each REST method invocation returns a request object with specific request options and error, requestTimeout and responseTimeout event handlers.
var Client = require('node-rest-client').Client;
var client = new Client();
var args = {
requesConfig: { timeout: 1000 },
responseConfig: { timeout: 2000 }
};
var req1 = client.get("http://remote.site/rest/xml/method", args, function (data, response) {
console.log(data);
console.log(response);
});
console.log(req1.options);
req1.on('requestTimeout', function (req) {
console.log("request has expired");
req.abort();
});
req1.on('responseTimeout', function (res) {
console.log("response has expired");
});
client.registerMethod("jsonMethod", "http://remote.site/rest/json/method", "GET");
var req2 = client.methods.jsonMethod(function (data, response) {
console.log(data);
console.log(response);
});
req2.on('error', function (err) {
console.log('something went wrong on req2!!', err.request.options);
});
Error Handling
Now you can handle error events in two places: on client or on each request.
var client = new Client(options_auth);
client.get("http://remote.site/rest/xml/method", function (data, response) {
console.log(data);
console.log(response);
}).on('error', function (err) {
console.log('something went wrong on the request', err.request.options);
});
client.on('error', function (err) {
console.error('Something went wrong on the client', err);
});
NOTE: _Since version 0.8.0 node does not contain node-waf anymore. The node-zlib package which node-rest-client make use of, depends on node-waf.Fortunately since version 0.8.0 zlib is a core dependency of node, so since version 1.0 of node-rest-client the explicit dependency to "zlib" has been removed from package.json. therefore if you are using a version below 0.8.0 of node please use a versión below 1.0.0 of "node-rest-client". _