An open API service indexing awesome lists of open source software.

https://github.com/virtualstate/internal


https://github.com/virtualstate/internal

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# @virtualstate/internal

[//]: # (badges)

### Support

![Node.js supported](https://img.shields.io/badge/node-%3E%3D18.7.0-blue) ![Bun supported](https://img.shields.io/badge/bun-%3E%3D1.0.2-blue)

### Test Coverage

[//]: # (badges)

# Usage

## [Service Worker API](https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API)

[`worker.js`](src/tests/readme/worker/worker.js)
```javascript
self.addEventListener("fetch", event => {
console.log(event.request.method, event.request.url);
event.respondWith(new Response("Hello"))
});
```

[`main.js`](src/tests/readme/worker/main.js)
```javascript
import { serviceWorker, createServiceWorkerFetch } from "@virtualstate/internal";
import { fileURLToPath } from "node:url";
import { dirname, join } from "node:path";

const pathname = fileURLToPath(import.meta.url);
const worker = join(dirname(pathname), "./worker.js");

const registration = await serviceWorker.register(worker);

const fetch = createServiceWorkerFetch(registration);

const response = await fetch("/");
const text = await response.text();

console.log(response.status, text); // 200 "Hello";
```

```bash
REDIS_MEMORY=1 node main.js
```

## [CacheStorage](https://developer.mozilla.org/en-US/docs/Web/API/CacheStorage)

[cache.js](./src/tests/readme/cache/cache.js)
```javascript
import { caches } from "@virtualstate/internal";

const cache = await caches.open("cache");

const url = "https://example.com";

await cache.add(url);

const response = await cache.match(url);
const text = await response.text();

console.log(response.status, text.substring(0, 15), text.length); // 200 "" 1256;
```

## [ContentIndex](https://developer.mozilla.org/en-US/docs/Web/API/ContentIndex)

[index.js]()
```javascript
import { index, caches } from "@virtualstate/internal";

const entry = {
id: "post-1",
url: "/posts/amet.html",
title: "Amet consectetur adipisicing",
description:
"Repellat et quia iste possimus ducimus aliquid a aut eaque nostrum.",
icons: [
{
src: "https://javascript.org.nz/logo.png",
sizes: "200x200",
type: "image/png",
},
],
category: "article",
};
await index.add(entry);

console.log(await index.getAll()) // [{ id: "post-1" }]

const cache = await caches.open("contentIndex");

for (const { src } of entry.icons) {
const response = await cache.match(src);
const { byteLength } = await response.arrayBuffer();
console.log(src, response.status, byteLength) // ... 200 5348
}
```

## [Background Sync API](https://developer.mozilla.org/en-US/docs/Web/API/Background_Synchronization_API)

[sync.js](src/tests/readme/sync/sync.js)
```javascript
import { addEventListener, sync, caches, index, dispatchEvent } from "@virtualstate/internal";

addEventListener("sync", ({ tag, waitUntil }) => {
if (tag === "images") {
waitUntil(onSyncImages());
}

async function onSyncImages() {
const cache = await caches.open("contentIndex");
for (const { id, icons } of await index.getAll()) {
for (const { src } of icons) {
console.log(`Updating icon "${src}" for ${id}`);
await cache.put(
src,
await fetch(src)
);
}
}
}
});

await sync.register("images");

// Ran elsewhere by scheduler
// Is usually managed by generateVirtualSyncEvents
await dispatchEvent({
type: "sync",
tag: "images",
schedule: {
immediate: true
}
});
```

## [Periodic Sync API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Periodic_Background_Synchronization_API)

[`periodic-sync.js`](src/tests/readme/periodic-sync/periodic-sync.js)
```javascript
import { addEventListener, periodicSync, caches, index, dispatchEvent } from "@virtualstate/internal";

addEventListener("periodicsync", ({ tag, waitUntil }) => {
if (tag === "images") {
waitUntil(onSyncImages());
}

async function onSyncImages() {
const cache = await caches.open("contentIndex");
for (const { id, icons } of await index.getAll()) {
for (const { src } of icons) {
console.log(`Updating icon "${src}" for ${id}`);
await cache.put(
src,
await fetch(src)
);
}
}
}
});

await periodicSync.register("images", {
minInterval: 5 * 60 * 1000 // Refresh every 5 minutes
});

// Ran elsewhere by scheduler
// Is usually managed by generatePeriodicSyncVirtualEvents
await dispatchEvent({
type: "periodicsync",
tag: "images",
schedule: {
immediate: true
// can give delay here or cron
// minInterval doesn't always mean a fixed rate
//
// delay: 5 * 60 * 1000,
// repeat: true
}
});
```

## Events

```javascript
import { addEventListener, dispatchEvent } from "@virtualstate/internal";

addEventListener("bingpop", () => {
console.log("Received bingpop event");
});

dispatchEvent({
type: "bingpop"
});
```

### Schedules

#### `schedule.immediate`

Use this to have the event be dispatched immediately

```javascript
dispatchEvent({
type: "bingpop",
schedule: {
immediate: true
}
});
```

#### `schedule.delay`

Use this to have the event be dispatched after a period of time

```javascript
dispatchEvent({
type: "bingpop",
schedule: {
delay: 1000
}
});
```

```javascript
dispatchEvent({
type: "bingpop",
schedule: {
delay: "1h"
}
});
```

#### `schedule.cron`

Use this to have the event be dispatched according to a [cron schedule](https://crontab.guru/)

```javascript
dispatchEvent({
type: "bingpop",
schedule: {
// Triggers at 5am each day
cron: "0 5 * * *"
}
});
```