Socket
Book a DemoInstallSign in
Socket

node-restclient

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-restclient

node-restclient adds easy-to-use api for basic http methods

0.0.1
latest
npmnpm
Weekly downloads
6
Maintainers
0
Weekly downloads
 
Created
Source

Node RestClient

Sometimes dabbling in HTTP Client connection and body processing can get messy. Never fear, Node-RestClient is here! Sporting a spiffy "jQuery" style familiar API, Node-RestClient bends to your every whim.

Examples

var restclient = require('./restclient'), sys = require("sys");
restclient.get("http://twitter.com/statuses/show/4.json", function(result) { sys.puts(result); }, "json");
restclient.post("http://username:password@twitter.com/statuses/update.json", {status: "I love Node.js"}, function(result) { sys.puts(result);  }, "json");

API

restclient.get( url, [data], [callback], [type] )

url A standard URL or a Basic Authentication encoded URL (as shown above), it will automatically figure out what to do! Optional.

data Key/value pairs that will be sent to the server. Optional.

callback A function to be executed whenever the data is loaded successfully. Optional.

type Either "text" or "json". Optional.

Summary

And just like that you can consume web-services with the elegance of a ruby, but the speed of a V8! Due note that just like jQuery, the result returned will be a JSON object if "json" is specified as the type.

Keywords

rest

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.