
Product
Reachability for Ruby Now in Beta
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.
@access-ci/ui
Advanced tools
This library provides user interface components for ACCESS CI websites. The components are rendered using the shadow DOM so that their styles are isolated from the rest of the site.
Sites using ACCESS user interface components should include the Archivo font family:
<link
rel="stylesheet"
id="google-font-archivo-css"
href="https://fonts.googleapis.com/css2?family=Archivo:ital,wdth,wght@0,70,400;0,100,400;0,100,500;0,100,600;0,100,700;0,100,800;1,100,400&display=swap"
media="all"
/>
The library includes functions for rendering common ACCESS user interface components:
universalMenus: Universal navigation menusheader: Logo headersiteMenus: Site-specific navigation menusbreadcrumbs: Breadcrumb navigationtableOfContents: Page table of contentsfooterMenus: Site-specific navigation menus above the footerfooter: Universal footerresourceCatalog: ACCESS resource catalogqaBot: Question/answer bot<div id="universal-menus"></div>
<div id="header"></div>
<div id="site-menus"></div>
<div id="main" class="container">
<div id="body">
<h1>Page Title</h1>
<h2>First Section</h2>
<h2>Second Section</h2>
<h2>Third Section</h2>
</div>
<div id="table-of-contents"></div>
</div>
<div id="footer-menus"></div>
<div id="footer"></div>
<div id="qa-bot"></div>
<script type="module">
import {
footer,
footerMenus,
header,
qaBot,
siteMenus,
tableOfContents,
universalMenuItems,
universalMenus,
} from "https://esm.sh/@access-ci/ui@0.8.0";
const siteItems = [
{
name: "One",
items: [
{
name: "Item A",
href: "/one/a",
},
{
name: "Item B",
href: "/one/b",
},
{
name: "Item C",
href: "/one/c",
},
],
},
{
name: "Two",
items: [
{
name: "Item A",
href: "/two/a",
},
{
name: "Item B",
href: "/two/b",
},
],
},
{
name: "Three",
href: "/three",
},
];
universalMenus({
loginUrl: "/login",
logoutUrl: "/logout",
siteName: "Allocations",
target: document.getElementById("universal-menus"),
});
header({
siteName: "Allocations",
target: document.getElementById("header"),
});
siteMenus({
items: siteItems,
siteName: "Allocations",
target: document.getElementById("site-menus"),
});
tableOfContents({
headings: document.querySelectorAll("#body h1, #body h2"),
target: document.getElementById("table-of-contents"),
});
footerMenus({
items: siteItems,
siteName: "Allocations",
target: document.getElementById("footer-menus"),
});
footer({ target: document.getElementById("footer") });
qaBot({
target: document.getElementById("qa-bot"),
apiKey: "my-api-key",
});
</script>
FAQs
User interface components for ACCESS CI
We found that @access-ci/ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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.

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.

Research
/Security News
Malicious npm packages use Adspect cloaking and fake CAPTCHAs to fingerprint visitors and redirect victims to crypto-themed scam sites.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.