Skip to content

jan-stefan/Continuous-Restclient

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 

Repository files navigation

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.