Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xerdi/meteor-caching
Universal service worker for caching resources in a Meteor project
https://github.com/xerdi/meteor-caching
meteor service-worker
Last synced: about 1 month ago
JSON representation
Universal service worker for caching resources in a Meteor project
- Host: GitHub
- URL: https://github.com/xerdi/meteor-caching
- Owner: Xerdi
- License: gpl-3.0
- Created: 2022-10-13T10:30:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-21T11:43:50.000Z (almost 2 years ago)
- Last Synced: 2024-11-11T14:44:41.689Z (3 months ago)
- Topics: meteor, service-worker
- Language: JavaScript
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Meteor Caching
The [universal service worker](https://github.com/ilan-schemoul/meteor-service-worker) for caching resources in a Meteor project.
## Installation
Add the package to your project:
```shell
meteor add xerdi:caching
```## Getting Started
The caching service is started automatically on the client.
The service can be stopped by:
```javascript
import {CacheService} from 'xerdi:caching';CacheService.stop();
```