# superagent-no-cache

> Plugin for visionmedia/superagent that adds headers to all requests that prevents caching

Latest version **0.1.1** (published 2017-02-28) · MIT license · 0 weekly downloads

## Install

```sh
npm install superagent-no-cache
pnpm add superagent-no-cache
yarn add superagent-no-cache
bun add superagent-no-cache
```

## Health

**Score 23/100 (F)** — status: abandoned.

Positive: has types package; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2017-02-28 |
| First published | 2015-04-28 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | separate (@types/superagent-no-cache) |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 26 |
| Author | John Syrinek |
| Maintainers | johntron, therebelrobot |
| Keywords | superagent, cache, request, AJAX |

## Links

- npm: https://www.npmjs.com/package/superagent-no-cache
- Repository: https://github.com/johntron/superagent-no-cache
- Issues: https://github.com/johntron/superagent-no-cache/issues
- npm.io page: https://npm.io/package/superagent-no-cache

## Dependencies (1)

- [component-ie](https://npm.io/package/component-ie.md) ^1.0.0

## Alternatives

- [memory-cache](https://npm.io/package/memory-cache.md) — 795.0K weekly downloads
- [@httptoolkit/proxy-agent](https://npm.io/package/@httptoolkit/proxy-agent.md) — 11.2K weekly downloads
- [express-cache-controller](https://npm.io/package/express-cache-controller.md) — 5.3K weekly downloads
- [http-cache-middleware](https://npm.io/package/http-cache-middleware.md) — 4.5K weekly downloads
- [cache2](https://npm.io/package/cache2.md) — 1.5K weekly downloads

## Recent versions

- 0.1.1 (latest) — 2017-02-28
- 0.1.0 — 2015-05-12
- 0.0.1 — 2015-04-28

## README

# superagent-no-cache

  Plugin for visionmedia/superagent that adds headers to all requests that prevents
  caching

## Installation
### Using Component
  Install with [component(1)](http://component.io):

```bash
$ component install johntron/superagent-no-cache
```
### Using NPM / Browserify
```bash
$ npm install --save superagent-no-cache
```
## Usage
```javascript
var request = require('superagent')
var noCache = require('superagent-no-cache')

request.get('/url')
    .use(noCache)
    .end(function _requestCallback() {
        // do something
    });
```

## IE

IE is wonky - you'll need to use the named export, `withQueryStrings` if you want to prevent caching in some versions (which ones?):

```javascript
var request = require('superagent')
var noCache = require('superagent-no-cache')
var isIE = require('ie')
var finalNoCache = isIE ? noCache : noCache.withQueryStrings

request.get('/url')
    .use(finalNoCache)
    .end(function _requestCallback() {
        // do something
    });
```

## Contributing

```bash
yarn && yarn test
```

... or ...

```bash
npm install -g mocha
make test
```

## License

The MIT License (MIT)

Copyright (c) 2015 John Syrinek

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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