UNPKG

axios-http2-adapter

Version:

`axios-http2-adapter` is a custom adapter designed to fill a gap in the current Axios ecosystem. Despite widespread demand, as evidenced by [axios issue #1175](https://github.com/axios/axios/issues/1175), Axios has yet to implement native HTTP/2 support.

55 lines (54 loc) 1.23 kB
{ "name": "axios-http2-adapter", "version": "1.0.1", "description": "", "main": "dist/index.js", "types": "dist/index.d.ts", "license": "MIT", "scripts": { "test": "jest", "build": "tsc", "release:commit": "./release-commit.sh", "release:publish": "./release-publish.sh" }, "keywords": [], "author": "", "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.ts": [ "npm test", "eslint --fix", "prettier --write" ] }, "devDependencies": { "@types/express": "^4.17.21", "@types/follow-redirects": "~1.14.4", "@types/jest": "^29.5.11", "@types/node": "^20.10.4", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.0.1", "express": "^4.18.2", "http2": "^3.3.7", "husky": "^8.0.3", "jest": "^29.7.0", "lint-staged": "^15.2.0", "prettier": "^3.1.1", "ts-jest": "^29.1.1", "typescript": "^5.3.3" }, "dependencies": { "follow-redirects": "^1.15.5", "http2-wrapper": "~2.2.1" }, "peerDependencies": { "axios": "~1.6.1" } }