hoax

0.2.11 • Public • Published

hoax

JSON HTTP client using pax for path currying and request for HTTP.

Used by coax

Build Status

Getting Started

Install the module with: npm install hoax

var hoax = require('hoax');
 
hoax(["http://localhost:3001/","very","awesome"], function(err, json){
    console.log("fetched", json)
});
 
// currying
var server = hoax("http://localhost:3001/"),
    path = server("very", {query : "params"});
 
// put JSON to "http://localhost:3001/very/awesome?query=params"
path.put("awesome", {some:"data"}, function(err, json){
    console.log("put json", json);
});
 

License

Copyright (c) 2013 Chris Anderson Licensed under the Apache license.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.2.11
    0
    • latest

Version History

Package Sidebar

Install

npm i hoax

Weekly Downloads

0

Version

0.2.11

License

none

Last publish

Collaborators

  • jchris