Skip to content
This repository has been archived by the owner on Oct 27, 2020. It is now read-only.
/ gluttony Public archive

🍰 Lightweight RESTful API consumption. Let the feast begin!~

License

Notifications You must be signed in to change notification settings

Wulf/gluttony

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

/gluttony/ API CONSUMPTION

The gluttony module was created to easily consume a REST service using AJAX. It is a minimalist library; it doesn't rely on other dependencies and is simple in nature.

Install

bower

bower install gluttony --save

npm

npm install gluttonyjs --save

Known Issues

  • Doesn't support IE5/6 or older browsers.

Usage

Include gluttony; <script src='path/to/gluttony.js'></script>

var data = {email: 'abc@def.ghi', password: '123'}

gluttony.post('/api/register', data, function(error, response) {
  console.log('Server response: ' + response)
})

gluttony.get('/api/stats', function(error, response)) {
  console.log('Server stats: ' + response)
})

About

🍰 Lightweight RESTful API consumption. Let the feast begin!~

Resources

License

Stars

Watchers

Forks

Packages

No packages published