├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── appveyor.yml ├── package.json ├── resources ├── icon.icns ├── icon.ico ├── icon.png ├── package.json └── screenshot-1.png ├── src ├── common │ ├── actions │ │ ├── app.js │ │ ├── browsers.js │ │ ├── proxy.js │ │ ├── requests.js │ │ └── url-mappings.js │ ├── config.js │ ├── constants.js │ ├── prop-types.js │ └── service │ │ ├── choose-file.js │ │ ├── dev-tools.js │ │ ├── keyboard.js │ │ ├── open-browser.js │ │ ├── proxy.js │ │ ├── sentry.js │ │ ├── shortcuts.js │ │ └── url-mapper.js ├── main │ ├── auto-update.js │ ├── index.js │ ├── menu.js │ ├── proxy.js │ └── url-mapper.js └── renderer │ ├── component │ ├── context-menu │ │ ├── context-menu-item.js │ │ └── context-menu.js │ ├── errors │ │ └── errors.js │ ├── footer │ │ ├── cache.js │ │ ├── footer.js │ │ ├── proxy-status.js │ │ ├── request-count.js │ │ ├── throttle.js │ │ └── update-status.js │ ├── home │ │ ├── browser.js │ │ └── browsers.js │ ├── inspect-request │ │ ├── inspect-request.js │ │ ├── request-body.js │ │ ├── request-details.js │ │ ├── request-metadata.js │ │ └── toolbar.js │ ├── mapping │ │ ├── new-mapping-destination.js │ │ ├── new-mapping-target.js │ │ ├── new-mapping.js │ │ └── url-mapping.js │ ├── requests │ │ ├── full-url.js │ │ ├── no-requests.js │ │ ├── request-context-menu.js │ │ ├── request-labels.js │ │ ├── request.js │ │ ├── requests.js │ │ └── search.js │ └── title-bar │ │ ├── mapping-count.js │ │ └── title-bar.js │ ├── containers │ ├── app.js │ ├── home.js │ ├── requests.js │ └── url-mappings.js │ ├── index.js │ ├── reducers │ ├── app.js │ ├── browsers.js │ ├── proxy.js │ ├── requests.js │ ├── root.js │ └── url-mappings.js │ ├── resources │ ├── fonts │ │ ├── lato-300.woff2 │ │ ├── lato-400.woff2 │ │ └── lato-700.woff2 │ ├── images │ │ ├── chrome_128x128.png │ │ ├── chromium_128x128.png │ │ ├── firefox_128x128.png │ │ ├── ie_128x128.png │ │ ├── opera_128x128.png │ │ ├── phantomjs_128x128.png │ │ └── safari_128x128.png │ └── style │ │ ├── _colors.scss │ │ ├── _fonts.scss │ │ ├── components │ │ ├── _browser.scss │ │ ├── _context-menu.scss │ │ ├── _errors.scss │ │ ├── _footer-throttle.scss │ │ ├── _footer.scss │ │ ├── _inspect-request.scss │ │ ├── _requests.scss │ │ ├── _titlebar.scss │ │ ├── main-content.scss │ │ └── windows │ │ │ └── url-mapping.scss │ │ └── main.scss │ └── store │ ├── index.js │ └── middleware │ ├── proxy.js │ ├── sentry.js │ └── url-mapper.js ├── test └── unit │ ├── actions │ ├── browsers.js │ ├── proxy.js │ ├── requests.js │ └── url-mappings.js │ ├── reducers │ ├── proxy.js │ ├── requests.js │ └── url-mappings.js │ └── service │ ├── proxy-spec.js │ └── url-mapper-spec.js └── webpack.test.config.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | binaries 4 | npm-debug.log -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/appveyor.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/package.json -------------------------------------------------------------------------------- /resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/resources/icon.icns -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/resources/package.json -------------------------------------------------------------------------------- /resources/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/resources/screenshot-1.png -------------------------------------------------------------------------------- /src/common/actions/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/actions/app.js -------------------------------------------------------------------------------- /src/common/actions/browsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/actions/browsers.js -------------------------------------------------------------------------------- /src/common/actions/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/actions/proxy.js -------------------------------------------------------------------------------- /src/common/actions/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/actions/requests.js -------------------------------------------------------------------------------- /src/common/actions/url-mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/actions/url-mappings.js -------------------------------------------------------------------------------- /src/common/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/config.js -------------------------------------------------------------------------------- /src/common/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/constants.js -------------------------------------------------------------------------------- /src/common/prop-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/prop-types.js -------------------------------------------------------------------------------- /src/common/service/choose-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/service/choose-file.js -------------------------------------------------------------------------------- /src/common/service/dev-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/service/dev-tools.js -------------------------------------------------------------------------------- /src/common/service/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/service/keyboard.js -------------------------------------------------------------------------------- /src/common/service/open-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/service/open-browser.js -------------------------------------------------------------------------------- /src/common/service/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/service/proxy.js -------------------------------------------------------------------------------- /src/common/service/sentry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/service/sentry.js -------------------------------------------------------------------------------- /src/common/service/shortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/service/shortcuts.js -------------------------------------------------------------------------------- /src/common/service/url-mapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/common/service/url-mapper.js -------------------------------------------------------------------------------- /src/main/auto-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/main/auto-update.js -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/main/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/main/menu.js -------------------------------------------------------------------------------- /src/main/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/main/proxy.js -------------------------------------------------------------------------------- /src/main/url-mapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/main/url-mapper.js -------------------------------------------------------------------------------- /src/renderer/component/context-menu/context-menu-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/context-menu/context-menu-item.js -------------------------------------------------------------------------------- /src/renderer/component/context-menu/context-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/context-menu/context-menu.js -------------------------------------------------------------------------------- /src/renderer/component/errors/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/errors/errors.js -------------------------------------------------------------------------------- /src/renderer/component/footer/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/footer/cache.js -------------------------------------------------------------------------------- /src/renderer/component/footer/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/footer/footer.js -------------------------------------------------------------------------------- /src/renderer/component/footer/proxy-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/footer/proxy-status.js -------------------------------------------------------------------------------- /src/renderer/component/footer/request-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/footer/request-count.js -------------------------------------------------------------------------------- /src/renderer/component/footer/throttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/footer/throttle.js -------------------------------------------------------------------------------- /src/renderer/component/footer/update-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/footer/update-status.js -------------------------------------------------------------------------------- /src/renderer/component/home/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/home/browser.js -------------------------------------------------------------------------------- /src/renderer/component/home/browsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/home/browsers.js -------------------------------------------------------------------------------- /src/renderer/component/inspect-request/inspect-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/inspect-request/inspect-request.js -------------------------------------------------------------------------------- /src/renderer/component/inspect-request/request-body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/inspect-request/request-body.js -------------------------------------------------------------------------------- /src/renderer/component/inspect-request/request-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/inspect-request/request-details.js -------------------------------------------------------------------------------- /src/renderer/component/inspect-request/request-metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/inspect-request/request-metadata.js -------------------------------------------------------------------------------- /src/renderer/component/inspect-request/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/inspect-request/toolbar.js -------------------------------------------------------------------------------- /src/renderer/component/mapping/new-mapping-destination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/mapping/new-mapping-destination.js -------------------------------------------------------------------------------- /src/renderer/component/mapping/new-mapping-target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/mapping/new-mapping-target.js -------------------------------------------------------------------------------- /src/renderer/component/mapping/new-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/mapping/new-mapping.js -------------------------------------------------------------------------------- /src/renderer/component/mapping/url-mapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/mapping/url-mapping.js -------------------------------------------------------------------------------- /src/renderer/component/requests/full-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/requests/full-url.js -------------------------------------------------------------------------------- /src/renderer/component/requests/no-requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/requests/no-requests.js -------------------------------------------------------------------------------- /src/renderer/component/requests/request-context-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/requests/request-context-menu.js -------------------------------------------------------------------------------- /src/renderer/component/requests/request-labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/requests/request-labels.js -------------------------------------------------------------------------------- /src/renderer/component/requests/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/requests/request.js -------------------------------------------------------------------------------- /src/renderer/component/requests/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/requests/requests.js -------------------------------------------------------------------------------- /src/renderer/component/requests/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/requests/search.js -------------------------------------------------------------------------------- /src/renderer/component/title-bar/mapping-count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/title-bar/mapping-count.js -------------------------------------------------------------------------------- /src/renderer/component/title-bar/title-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/component/title-bar/title-bar.js -------------------------------------------------------------------------------- /src/renderer/containers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/containers/app.js -------------------------------------------------------------------------------- /src/renderer/containers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/containers/home.js -------------------------------------------------------------------------------- /src/renderer/containers/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/containers/requests.js -------------------------------------------------------------------------------- /src/renderer/containers/url-mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/containers/url-mappings.js -------------------------------------------------------------------------------- /src/renderer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/index.js -------------------------------------------------------------------------------- /src/renderer/reducers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/reducers/app.js -------------------------------------------------------------------------------- /src/renderer/reducers/browsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/reducers/browsers.js -------------------------------------------------------------------------------- /src/renderer/reducers/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/reducers/proxy.js -------------------------------------------------------------------------------- /src/renderer/reducers/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/reducers/requests.js -------------------------------------------------------------------------------- /src/renderer/reducers/root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/reducers/root.js -------------------------------------------------------------------------------- /src/renderer/reducers/url-mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/reducers/url-mappings.js -------------------------------------------------------------------------------- /src/renderer/resources/fonts/lato-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/fonts/lato-300.woff2 -------------------------------------------------------------------------------- /src/renderer/resources/fonts/lato-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/fonts/lato-400.woff2 -------------------------------------------------------------------------------- /src/renderer/resources/fonts/lato-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/fonts/lato-700.woff2 -------------------------------------------------------------------------------- /src/renderer/resources/images/chrome_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/images/chrome_128x128.png -------------------------------------------------------------------------------- /src/renderer/resources/images/chromium_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/images/chromium_128x128.png -------------------------------------------------------------------------------- /src/renderer/resources/images/firefox_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/images/firefox_128x128.png -------------------------------------------------------------------------------- /src/renderer/resources/images/ie_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/images/ie_128x128.png -------------------------------------------------------------------------------- /src/renderer/resources/images/opera_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/images/opera_128x128.png -------------------------------------------------------------------------------- /src/renderer/resources/images/phantomjs_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/images/phantomjs_128x128.png -------------------------------------------------------------------------------- /src/renderer/resources/images/safari_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/images/safari_128x128.png -------------------------------------------------------------------------------- /src/renderer/resources/style/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/style/_colors.scss -------------------------------------------------------------------------------- /src/renderer/resources/style/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/style/_fonts.scss -------------------------------------------------------------------------------- /src/renderer/resources/style/components/_browser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/style/components/_browser.scss -------------------------------------------------------------------------------- /src/renderer/resources/style/components/_context-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/style/components/_context-menu.scss -------------------------------------------------------------------------------- /src/renderer/resources/style/components/_errors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/style/components/_errors.scss -------------------------------------------------------------------------------- /src/renderer/resources/style/components/_footer-throttle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/style/components/_footer-throttle.scss -------------------------------------------------------------------------------- /src/renderer/resources/style/components/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/style/components/_footer.scss -------------------------------------------------------------------------------- /src/renderer/resources/style/components/_inspect-request.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/style/components/_inspect-request.scss -------------------------------------------------------------------------------- /src/renderer/resources/style/components/_requests.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/style/components/_requests.scss -------------------------------------------------------------------------------- /src/renderer/resources/style/components/_titlebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/style/components/_titlebar.scss -------------------------------------------------------------------------------- /src/renderer/resources/style/components/main-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/style/components/main-content.scss -------------------------------------------------------------------------------- /src/renderer/resources/style/components/windows/url-mapping.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/style/components/windows/url-mapping.scss -------------------------------------------------------------------------------- /src/renderer/resources/style/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/resources/style/main.scss -------------------------------------------------------------------------------- /src/renderer/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/store/index.js -------------------------------------------------------------------------------- /src/renderer/store/middleware/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/store/middleware/proxy.js -------------------------------------------------------------------------------- /src/renderer/store/middleware/sentry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/store/middleware/sentry.js -------------------------------------------------------------------------------- /src/renderer/store/middleware/url-mapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/src/renderer/store/middleware/url-mapper.js -------------------------------------------------------------------------------- /test/unit/actions/browsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/test/unit/actions/browsers.js -------------------------------------------------------------------------------- /test/unit/actions/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/test/unit/actions/proxy.js -------------------------------------------------------------------------------- /test/unit/actions/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/test/unit/actions/requests.js -------------------------------------------------------------------------------- /test/unit/actions/url-mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/test/unit/actions/url-mappings.js -------------------------------------------------------------------------------- /test/unit/reducers/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/test/unit/reducers/proxy.js -------------------------------------------------------------------------------- /test/unit/reducers/requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/test/unit/reducers/requests.js -------------------------------------------------------------------------------- /test/unit/reducers/url-mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/test/unit/reducers/url-mappings.js -------------------------------------------------------------------------------- /test/unit/service/proxy-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/test/unit/service/proxy-spec.js -------------------------------------------------------------------------------- /test/unit/service/url-mapper-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/test/unit/service/url-mapper-spec.js -------------------------------------------------------------------------------- /webpack.test.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-proxy/james/HEAD/webpack.test.config.js --------------------------------------------------------------------------------