bzarras / newsapi

A promise-based node interface for NewsAPI
MIT License
144 stars 39 forks source link

Caching #6

Closed iinc closed 6 years ago

iinc commented 6 years ago

https://newsapi.org/docs/caching

Please consider adding support for disabling caching.

bzarras commented 6 years ago

@iinc Support for disabling caching has been added. You can now disable caching by adding a second param to your queries like:

newsapi.v2.everything({ ... }, { noCache: true }).then(res => { ... });