Skip to content

Commit

Permalink
add node engine
Browse files Browse the repository at this point in the history
  • Loading branch information
Sony Seng authored and sonyseng committed Nov 14, 2020
1 parent cdc3d3f commit 5b0836f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
Node caching HTTP proxy built on top of [express-http-proxy](https://github.com/villadora/express-http-proxy). Persists requests and responses to an in-memory HAR-like data structure based on [HAR1.2](http://www.softwareishard.com/blog/har-12-spec/) . Caches JSON content-type responses by default with the ability to cache an entire site; including content-types describing images. Useful for testing front end code, mocking api, and saving the cache to a HAR file which can be used for further tests.
## Installation

Requires Node >= 10

Command line tool:
```
$ npm install -g json-caching-proxy
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"name": "json-caching-proxy",
"version": "1.5.0",
"version": "1.5.1",
"description": "in-memory reverse caching HAR proxy",
"keywords": [
"cache",
"proxy",
"json"
],
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"test": "mocha ./test/*.spec.js",
"jsdoc": "jsdoc ./*.js -d ./jsdoc"
Expand Down

0 comments on commit 5b0836f

Please sign in to comment.