You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-9Lines changed: 17 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,10 @@ browser XMLHttpRequest object.
6
6
This can be used with JS designed for browsers to improve reuse of code and
7
7
allow the use of existing libraries.
8
8
9
+
Note: This library currently conforms to [XMLHttpRequest 1](http://www.w3.org/TR/XMLHttpRequest/). Version 2.0 will target [XMLHttpRequest Level 2](http://www.w3.org/TR/XMLHttpRequest2/).
10
+
9
11
## Usage ##
12
+
10
13
Here's how to include the module in your project and use as the browser-based
11
14
XHR object.
12
15
@@ -16,8 +19,6 @@ XHR object.
16
19
Note: use the lowercase string "xmlhttprequest" in your require(). On
17
20
case-sensitive systems (eg Linux) using uppercase letters won't work.
18
21
19
-
Refer to [W3C specs](http://www.w3.org/TR/XMLHttpRequest/) for XHR methods.
20
-
21
22
## Versions ##
22
23
23
24
Prior to 1.4.0 version numbers were arbitrary. From 1.4.0 on they conform to
@@ -33,13 +34,20 @@ the W3C spec.
33
34
34
35
* Async and synchronous requests
35
36
* GET, POST, PUT, and DELETE requests
36
-
* All native methods (open, send, abort, getRequestHeader,
37
-
getAllRequestHeaders)
37
+
* All spec methods (open, send, abort, getRequestHeader,
38
+
getAllRequestHeaders, event methods)
38
39
* Requests to all domains
39
40
40
-
## TODO ##
41
+
## Known Issues / Missing Features ##
42
+
43
+
For a list of open issues or to report your own visit the [github issues
0 commit comments