Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 669 Bytes

File metadata and controls

23 lines (16 loc) · 669 Bytes

Continuous-Restclient

A simple javascript based rest client which helps you to easily access restful services.

Basic usage

First of all build an instance of REST:

var request = new REST();

After that you can start firing request to any service:

request.GET("http://host:port/resource",true,
    function (responseText, statusCode, statusMessage) {  
       //do something 
    });

There is an implementation for every method a restful service should provide to you. This is only a small getting started example. Visit the wikipages for more detailed information.