Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simboyz/windturbine
WindTurbine AJAX, a simple, lightweight, blazing fast, cross-browser compatible AJAX tool.
https://github.com/simboyz/windturbine
Last synced: about 1 month ago
JSON representation
WindTurbine AJAX, a simple, lightweight, blazing fast, cross-browser compatible AJAX tool.
- Host: GitHub
- URL: https://github.com/simboyz/windturbine
- Owner: simboyz
- License: mit
- Created: 2015-11-20T15:20:26.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-01T12:01:15.000Z (over 9 years ago)
- Last Synced: 2024-08-02T05:13:16.992Z (4 months ago)
- Language: JavaScript
- Size: 168 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-blazingly-fast - windturbine - WindTurbine AJAX, a simple, lightweight, blazing fast, cross-browser compatible AJAX tool. (JavaScript)
README
# WindTurbine AJAX
A simple, lightweight, _blazing fast_, cross-browser compatible AJAX tool.
## Features
- Easy to use, compact, intuitive API
- Shorthand functions for common AJAX tasks
- Cross-browser compatible
- Offensively fast, using request stacking
- Well documented## How to use
Fetching a simple text based resource is as compact as:
```javascript
wt.get('example.php', function (response) {
alert(response);
});
```## Documentation
The entire documentation, as well as examples are available at http://wtajax.tk/doc
### Request stacking
http://wtajax.tk/doc/stacking
Request stacking is a behind-the-scenes optimization technique WindTurbine implements to dramatically speed up the response times of AJAX requests sent with safe HTTP methods. It's originally based on an idea to remove latency from AJAX-enabled links by preloading them right before they are clicked on.
## How to help
If you found WindTurbine to be useful, please help testing its functionality across multiple (and older) browsers.
## License
WindTurbine AJAX is available under the MIT License.