Skip to main content

Built and signed on GitHub Actions

An ActivityPub/fediverse server framework

This package works with Node.js, Deno, Bun
This package works with Node.js
This package works with Deno
This package works with Bun
JSR Score
94%
Published
6 days ago (1.5.0)
class DidService

Means of communicating or interacting with the DID subject or associated entities via one or more service endpoints. Examples include discovery services, agent services, social networking services, file storage services, and verifiable credential repository services.

Constructors

new
DidService(
values: { id?: URL | null; endpoint?: URL | null; endpoints?: (URL)[]; },
options?: { documentLoader?: DocumentLoader; contextLoader?: DocumentLoader; tracerProvider?: TracerProvider; },
)

Constructs a new instance of DidService with the given values.

Properties

protected
writeonly
_cachedJsonLd: unknown | undefined
protected
readonly
_cachedJsonLd: unknown | undefined
protected
readonly
_contextLoader: DocumentLoader | undefined
protected
readonly
_documentLoader: DocumentLoader | undefined
protected
readonly
_tracerProvider: TracerProvider | undefined
protected
readonly
_warning: { category: string[]; message: string; values?: Record<string, unknown>; } | undefined
readonly
endpoint: URL | null

A network address, such as an HTTP URL, at which services operate on behalf of a DID subject.

readonly
endpoints: (URL)[]

A network address, such as an HTTP URL, at which services operate on behalf of a DID subject.

readonly
id: URL | null

Methods

[Symbol.for("nodejs.util.inspect.custom")](
_depth: number,
options: unknown,
inspect: (
value: unknown,
options: unknown,
) => string
,
): string
protected
_getCustomInspectProxy(): Record<string, unknown>
clone(
values?: { id?: URL | null; endpoint?: URL | null; endpoints?: (URL)[]; },
options?: { documentLoader?: DocumentLoader; contextLoader?: DocumentLoader; },
): DidService

Clones this instance, optionally updating it with the given values.

toJsonLd(options?: { format?: "compact" | "expand"; contextLoader?: DocumentLoader; context?:
string
| Record<string, string>
| (string | Record<string, string>)[]
; }
): Promise<unknown>

Converts this object to a JSON-LD structure.

Static Properties

readonly
typeId: URL

The type URI of DidService: https://www.w3.org/ns/did#Service.

Static Methods

protected
__fromJsonLd__DidService__(
json: unknown,
span: Span,
options?: { documentLoader?: DocumentLoader; contextLoader?: DocumentLoader; tracerProvider?: TracerProvider; },
): Promise<DidService>
fromJsonLd(
json: unknown,
options?: { documentLoader?: DocumentLoader; contextLoader?: DocumentLoader; tracerProvider?: TracerProvider; },
): Promise<DidService>

Converts a JSON-LD structure to an object of this type.

Add Package

deno add jsr:@fedify/fedify

Import symbol

import { DidService } from "@fedify/fedify/vocab";

---- OR ----

Import directly with a jsr specifier

import { DidService } from "jsr:@fedify/fedify/vocab";

Add Package

npx jsr add @fedify/fedify

Import symbol

import { DidService } from "@fedify/fedify/vocab";

Add Package

yarn dlx jsr add @fedify/fedify

Import symbol

import { DidService } from "@fedify/fedify/vocab";

Add Package

pnpm dlx jsr add @fedify/fedify

Import symbol

import { DidService } from "@fedify/fedify/vocab";

Add Package

bunx jsr add @fedify/fedify

Import symbol

import { DidService } from "@fedify/fedify/vocab";