https://github.com/cabraviva/zget
A cool Javascript framework to make XMLHttpRequest easier to use!
https://github.com/cabraviva/zget
fetch framework javascript js-framework xmlhttprequest zget
Last synced: 3 months ago
JSON representation
A cool Javascript framework to make XMLHttpRequest easier to use!
- Host: GitHub
- URL: https://github.com/cabraviva/zget
- Owner: cabraviva
- License: mit
- Created: 2020-08-26T11:40:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-22T19:12:18.000Z (over 2 years ago)
- Last Synced: 2025-01-10T03:28:41.425Z (about 1 year ago)
- Topics: fetch, framework, javascript, js-framework, xmlhttprequest, zget
- Language: JavaScript
- Homepage: https://greencoder001.github.io/zGET/
- Size: 42 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.jsdelivr.com/package/gh/greencoder001/zget)
**NOTE: zGET is deprecated, as it was replaced by [knorry](https://github.com/greencoder001/knorry). You can still use zGET, but it won't receive any updates**
# zGET
A cool Javascript framework to make XMLHttpRequest easier to use!
## Install:
### GitHub
**Use the latest version:**
Add this to your html:
```html
```
or
### jsdelivr
**Use the latest version with jsdelivr:**
Add this to your html:
```html
```
or
### Local:
**Use a specific version:**
Download the latest release, unpack it and add this html:
```html
```
## Examples:
### 01 - Get stargazers of a github repository
```js
zGET({
url: 'https://api.github.com/repos/greencoder001/zGET/stargazers'
}).then(value => {
JSON.parse(value).forEach((stargazer) => {
console.log('Stargazer:', stargazer.login)
})
})
```