1.1.1 • Published 9 years ago

zoku v1.1.1

Weekly downloads
3
License
ISC
Repository
github
Last release
9 years ago

zoku

Promisified ajax library; browserify compatible.

npm install zoku --save

Usage

var ajax = require('zoku');

ajax(url, data); // Defaults to 'get'
ajax.get(url, data);
ajax.post(url, data);

// Specify method explicitly
ajax(url, 'get', data);

// Use the result
ajax(url, data).then(function (result) {
  // Use the data (as json)
}, function (err) {
  // error thrown
});

Zoku? WTF?

I was reading The Causal Angel by Hannu Rajaniemi when I wrote this, there is a faction known as the Zoku, it's from the Japanese word for 'clan' I believe.

1.1.1

9 years ago

1.1.0

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago

0.0.2

10 years ago

0.0.0

10 years ago