An open API service indexing awesome lists of open source software.

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!

Awesome Lists containing this project

README

          

[![](https://data.jsdelivr.com/v1/package/gh/greencoder001/zget/badge)](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)
})
})
```