https://github.com/kryptand/delayed-http-operations
https://github.com/kryptand/delayed-http-operations
angular angular8 delay delayed-save
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kryptand/delayed-http-operations
- Owner: Kryptand
- Created: 2019-08-11T20:31:09.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T08:38:04.000Z (over 3 years ago)
- Last Synced: 2025-02-19T14:42:09.435Z (over 1 year ago)
- Topics: angular, angular8, delay, delayed-save
- Language: TypeScript
- Size: 2.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
_ ______ ____________ ____
|_/ |__/ \_/ |__]| |__||\ || \
| \_| \ | | | | || \||__/
What problem does Delayed Http Operations solve?
This package can be used to delay all your HTTP Requests up to a certain point without the hassle of locally providing multiple states.
To use it add the DelayedHttpOperationsService to the providers array in the scope of your liking.
(It is recommended to add it to AppModule though)
[...]
import { DelayedHttpOperationsService } from 'projects/delayed-http-operations/src/lib/services/delayed-http-operations.service';
@NgModule({
[...]
providers: [DelayedHttpOperationsService],
[...]
})
export class AppModule {}
For an example look into https://github.com/Kryptand/delayed-http-operations