# tinyajax

> tinyajax

Latest version **0.1.0** (published 2016-12-27) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install tinyajax
pnpm add tinyajax
yarn add tinyajax
bun add tinyajax
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2016-12-27 |
| First published | 2016-12-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | joje |
| Maintainers | joje |
| Keywords | ajax |

## Links

- npm: https://www.npmjs.com/package/tinyajax
- Repository: https://github.com/attrs/tinyajax
- Issues: https://github.com/attrs/tinyajax/issues
- npm.io page: https://npm.io/package/tinyajax

## Recent versions

- 0.1.0 (latest) — 2016-12-27

## README

# tinyajax

## Install

```sh
$ npm install tinyajax --save
```

```sh
$ bower install tinyajax
```

## Usage
```javascript
var ajax = require('tinyajax');

ajax(src, function(err, text) {
  ...
});

// sync
ajax(src, function(err, text) {
  ...
}, true);


// option
ajax(src, function(err, text) {
  ...
}, {
  sync: false,
  mimetype: 'application/json',
  headers: {
  	'X-Some-Header': 'value'
  },
  payload: {
    key: 'value'
  }
});
```

---
_Source: https://npm.io/package/tinyajax · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
