Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@digital-butlers/components
Advanced tools
A convenient library with various components for everyday tasks
You can view examples of components here
Documentation for SharePageLinks
npm install @digital-butlers/components
or
pnpm add @digital-butlers/components
import { Tabs } from '@digital-butlers/components/tabs';
const SELECTORS = {
TABS_WRAPPER: '[data-role="tabs-wrapper"]',
PANEL_LIST: '[data-role="panel-list"]',
TAB_LIST: '[data-role="tab-list"]',
};
const tabsVertical = new Tabs(SELECTORS.COMPONENT, {
tabpanelsListSelector: SELECTORS.PANEL_LIST,
tabbuttonsListSelector: SELECTORS.TAB_LIST,
orientation: 'vertical',
deletableTabs: true,
animation: {
delay: 1000,
},
triggerEvent: 'mouseover',
matchMediaRule: '(min-width: 600px)',
autoplay: {
delay: 0,
},
on: {
tabChange: (tabs) => {
console.log(tabs.activeIndex);
},
},
});
import { Accordions } from '@digital-butlers/components/accordions';
const componentElement = document.querySelector('[data-component-id="accordions"]'); //
const accordions = new Accordions({
parentElement: componentElement, // Any node that is the parent of an accordion. It is advisable to specify the nearest parent
isSingle: true, // If set to 'true', then only one active accordion element can be turned on at a time
});
import { Marquee } from '@digital-butlers/components/marquee';
const marquee = new Marquee({
marqueeParentSelector: '[data-role="marquee-parent"]',
marqueeMovingLineSelector: '[data-role="marquee-moving-line"]',
marqueeListSelector: '[data-role="marquee-list"]',
wrapperOfVisiblePartOfMarquee: document.documentElement, // it is needed to measure the width of the visible part of the running line
matchMediaRule: window.matchMedia('(min-width: 800px)'), // will prevent the tab changing if window.matchMedia doesn't match
});
marquee.init();
import { SharePageLinks } from '@digital-butlers/components/share-page-links';
const shareLinks = new SharePageLinks({
messageForShareViaEmail: "This is really important! Don't miss it", // the text to insert in the "body of the message" field (if we share a link to the page in the email)
pageName: 'Custom page name', // if there is no 'title', 'h1', '[role="heading"][aria-level="1"]' on the page, this text will be used instead
});
shareLinks.init();
FAQs
A convenient library with various components for everyday tasks
We found that @digital-butlers/components demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.