
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
@blockprotocol/service
Advanced tools
Implementation of the Block Protocol service module specification for blocks and embedding applications
This package implements the Block Protocol Service module for blocks and embedding applications.
To get started:
yarn add @blockprotocol/service
or npm install @blockprotocol/service
To create a ServiceBlockHandler
, pass the constructor an element in your block, along with any callbacks you wish to register to handle incoming messages.
For React, we provide a useServiceBlockModule
hook, which accepts a ref
to an element, and optionally any callbacks
you wish to provide on initialization.
Create a ServiceBlockHandler
in your element. If you are using our template, you can add this in the constructedCallback instance method (Lit docs) and make it available for use in your element.
...
connectedCallback() {
super.connectedCallback();
if (!this.serviceModule || this.serviceModule.destroyed) {
this.serviceModule = new ServiceBlockHandler({
element: this,
});
}
}
retrieveDirections(data) {
if (!this.serviceModule) {
throw new Error("Service module not available");
}
this.serviceModule.mapboxRetrieveDirections(args).then(() => { ... });
}
...
You should construct one ServiceEmbedderHandler
per block.
It is not currently possible to wrap multiple blocks with a single handler.
To create a ServiceEmbedderHandler
, pass the constructor:
element
wrapping your blockcallbacks
to respond to messages from the blockimport { ServiceEmbedderHandler } from "@blockprotocol/service";
const serviceModule = new ServiceEmbedderHandler({
callbacks: { ... },
element: elementWrappingTheBlock,
});
For React embedding applications, we provide a useServiceEmbedderModule
hook, which accepts a ref
to an element, and optionally any additional constructor arguments you wish to pass.
import { useServiceEmbedderModule } from "@blockprotocol/service";
import { useRef } from "react";
export const App = () => {
const wrappingRef = useRef<HTMLDivElement>(null);
const { serviceModule } = useServiceEmbedderModule(blockRef);
return (
<div ref={wrappingRef}>
<Block />
</div>
);
};
FAQs
Implementation of the Block Protocol service module specification for blocks and embedding applications
The npm package @blockprotocol/service receives a total of 687 weekly downloads. As such, @blockprotocol/service popularity was classified as not popular.
We found that @blockprotocol/service demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.