
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@metamask/docusaurus-openrpc
Advanced tools
A Docusaurus plugin for generating interactive documentation from your OpenRPC document
A Docusaurus plugin for OpenRPC.
npm install @metamask/docusaurus-openrpc
There are two ways to use this plugin:
Creates its own sidebar and path for the JSON-RPC method documentation.
Add the following in the plugins
section of your docusaurus.config.js
file:
[
'@metamask/docusaurus-openrpc',
{
path: '/api-playground',
openrpcDocument: './path/to/openrpc.json', // path or url to openrpc document.
},
];
Embeds the JSON-RPC method docs sidebar entries into your existing Docusaurus sidebar. You can configure this in your sidebar.js
file.
If you are using the @docusaurus/preset-classic
then make the following changes in the presets
section of your docusaurus.config.js
file. You should also add a sidebar entry in the sidebars.js
file, as described below:
Replace "@docusaurus/preset-classic"
with "@metamask/docusaurus-openrpc/dist/preset"
.
Replace /** @type {import("@docusaurus/preset-classic").Options} */
with /** @type {import('@metamask/docusaurus-openrpc/dist/preset').Options} */
.
In the docs: {
section add the openrpc
configuration with the fields shown below.
openrpcDocument
field is the Docusaurus path to your OpenRPC JSON spec. You can also use the URL format, for example: openrpcDocument: "https://metamask.github.io/api-specs/latest/openrpc.json",
.path
field is the name of the category directory in your Docusaurus docs. For example, reference
will build your JSON-RPC docs in docs/reference
Docusuarus directory. NOTE: You must have at least one Markdown file in this directory.See below:
presets: [
[
"@metamask/docusaurus-openrpc/dist/preset",
/** @type {import('@metamask/docusaurus-openrpc/dist/preset').Options} */
{
docs: {
...
openrpc: {
openrpcDocument: "./docs/refs-openrpc.json",
path: "reference",
sidebarLabel: "JSON-RPC",
},
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
...
In the sidebars.js
file, add the following entry:
{
type: "category",
label: "Reference",
link: { type: "generated-index" },
items: [
{
type: "autogenerated",
dirName: "reference",
}
],
},
This will create a sidebar category entry Reference >
in your existing Docusaurus sidebar. The Reference >
category will contain JSON-RPC
sub-category with the JSON-RPC method entries. IMPORTANT: You must have at least one Markdown file in the docs/reference
Docusuarus directory for Docusaurus to autogenerate the sidebar entries for the Reference
category.
In development, you can use yarn link
in this repo, then run yarn link "@metamask/docusaurus-openrpc"
in your project (metamask-docs, for example). Finally, run yarn build:watch
in this repo to rebuild the plugin as you make changes.
FAQs
A Docusaurus plugin for generating interactive documentation from your OpenRPC document
We found that @metamask/docusaurus-openrpc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.