
Company News
Andrew Becherer Joins Socket as Chief Information Security Officer
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.
@runefort/core
Advanced tools
Reference Web Component framework for the Runefort layout protocol.
Four custom elements: <rune-floor>, <rune-room>, <rune-claim>, <rune-link>. Plain JavaScript with JSDoc types. No build step. No dependencies. Works in any browser, any framework, or no framework.
<script type="module" src="https://unpkg.com/@runefort/core"></script>
<link rel="stylesheet" href="https://unpkg.com/@runefort/core/theme.css">
Or via npm:
npm install @runefort/core
<rune-floor columns="6" rows="2" editor="vscode">
<rune-room id="memory" position="0,0" size="3,2"
label="memory.ex"
anchor="lib/forge/memory.ex:24"
state-class="hot"></rune-room>
<rune-room id="deploy" position="3,0" size="3,2"
label="deploy.ex"
anchor="lib/forge/deploy.ex"></rune-room>
<rune-link from="memory" to="deploy" bidirectional></rune-link>
</rune-floor>
<script type="module">
import "@runefort/core";
const floor = document.querySelector("rune-floor");
// Live state — updates state classes on rooms with bindings.
floor.bindings = [{
room: "memory", signal: "kappa",
thresholds: [
{ if: "< 0.3", class: "cold" },
{ if: "< 0.6", class: "warm" },
{ if: ">= 0.6", class: "hot" }
]
}];
floor.signals = { kappa: 0.7 };
floor.addEventListener("rune:open", e => {
console.log("opening", e.detail.anchorUrl);
});
</script>
See docs/spec/runefort.core.md for the full element reference.
≤ 5 KB minified+gzipped (hard ship gate). Current size is tracked in CI.
FAQs
Reference Web Component framework for the Runefort layout protocol
We found that @runefort/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.

Company News
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.

Security News
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.