{"id":20332322,"url":"https://github.com/liuy97/http-ie-helper","last_synced_at":"2026-05-07T23:05:25.554Z","repository":{"id":57268221,"uuid":"136299256","full_name":"liuy97/http-ie-helper","owner":"liuy97","description":null,"archived":false,"fork":false,"pushed_at":"2018-10-18T19:06:11.000Z","size":201,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-16T20:47:52.095Z","etag":null,"topics":["angular","httpclient","ie","ie11"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/liuy97.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-06-06T08:41:30.000Z","updated_at":"2018-10-18T19:04:02.000Z","dependencies_parsed_at":"2022-09-02T02:02:03.409Z","dependency_job_id":null,"html_url":"https://github.com/liuy97/http-ie-helper","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liuy97%2Fhttp-ie-helper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liuy97%2Fhttp-ie-helper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liuy97%2Fhttp-ie-helper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liuy97%2Fhttp-ie-helper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/liuy97","download_url":"https://codeload.github.com/liuy97/http-ie-helper/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241851387,"owners_count":20030963,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","httpclient","ie","ie11"],"created_at":"2024-11-14T20:26:00.865Z","updated_at":"2026-05-07T23:05:25.520Z","avatar_url":"https://github.com/liuy97.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# http-ie-helper - Get request will be sent with no-cache in IE 11.\n\n[![npm version](https://badge.fury.io/js/http-ie-helper.svg)](https://badge.fury.io/js/http-ie-helper),\n[![Build Status](https://travis-ci.org/liuy97/http-ie-helper.svg?branch=master)](https://travis-ci.org/liuy97/http-ie-helper)\n[![Coverage Status](https://coveralls.io/repos/github/liuy97/http-ie-helper/badge.svg?branch=master)](https://coveralls.io/github/liuy97/http-ie-helper?branch=master)\n[![dependency Status](https://david-dm.org/liuy97/http-ie-helper/status.svg)](https://david-dm.org/liuy97/http-ie-helper)\n[![devDependency Status](https://david-dm.org/liuy97/http-ie-helper/dev-status.svg?branch=master)](https://david-dm.org/liuy97/http-ie-helper#info=devDependencies)\n\n## Demo\n\nView all the directives in action at https://liuy97.github.io/http-ie-helper\n\n## Dependencies\n* [Angular](https://angular.io) (*requires* Angular 4.3 or higher, tested with 4.3.0)\n\n## Installation\nInstall above dependencies via *npm*. \n\nNow install `http-ie-helper` via:\n```shell\nnpm install --save http-ie-helper\n```\n\n---\n##### SystemJS\n\u003e**Note**:If you are using `SystemJS`, you should adjust your configuration to point to the UMD bundle.\nIn your systemjs config file, `map` needs to tell the System loader where to look for `http-ie-helper`:\n```js\nmap: {\n  'http-ie-helper': 'node_modules/http-ie-helper/bundles/http-ie-helper.umd.js',\n}\n```\n---\n\nOnce installed you need to import the main module:\n```js\nimport { HttpIEHelperModule } from 'http-ie-helper';\n```\nThe only remaining part is to list the imported module in your application module. The exact method will be slightly\ndifferent for the root (top-level) module for which you should end up with the code similar to (notice ` HttpIEHelperModule .forRoot()`):\n```js\nimport { HttpIEHelperModule, HttpIEHelperInterceptor } from 'http-ie-helper';\n\n@NgModule({\n  declarations: [AppComponent, ...],\n  imports: [HttpIEHelperModule.forRoot(), ...],\n  providers: [{ provide: HTTP_INTERCEPTORS, useClass: HttpIEHelperInterceptor, multi: true }],\n  bootstrap: [AppComponent]\n})\nexport class AppModule {\n}\n```\n\nOther modules in your application can simply import ` HttpIEHelperModule ` and provide HttpIEHelperInterceptor:\n\n```js\nimport { HttpIEHelperModule, HttpIEHelperInterceptor } from 'http-ie-helper';\n\n@NgModule({\n  declarations: [OtherComponent, ...],\n  imports: [HttpIEHelperModule, ...],\n  providers: [{ provide: HTTP_INTERCEPTORS, useClass: HttpIEHelperInterceptor, multi: true }],\n})\nexport class OtherModule {\n}\n```\n\n## Usage\n\n\n\n## License\n\nCopyright (c) 2018 Yong Liu. Licensed under the MIT License (MIT)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliuy97%2Fhttp-ie-helper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fliuy97%2Fhttp-ie-helper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliuy97%2Fhttp-ie-helper/lists"}