liucougar / node-XMLHttpRequest

XMLHttpRequest for node.js

Home Page:http://thedanexperiment.com/2009/10/04/emulating-xmlhttprequest-in-node-js/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-XMLHttpRequest

node-XMLHttpRequest is arapper for the built-in http client to emulate the browser XMLHttpRequest object.

This can be used with JS designed for browsers to improve reuse of code and allow the use of existing libraries.

Usage

Here's how to include the module in your project and use as the browser-based XHR object.

var XMLHttpRequest = require("XMLHttpRequest").XMLHttpRequest;
var xhr = new XMLHttpRequest();

Refer to W3C specs for XHR methods.

TODO

  • Add basic authentication
  • Additional unit tests
  • Possibly move from http to tcp for more flexibility

About

XMLHttpRequest for node.js

http://thedanexperiment.com/2009/10/04/emulating-xmlhttprequest-in-node-js/


Languages

Language:JavaScript 100.0%