Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
@odopod/odo-base-component
Advanced tools
Base component for odo components. Includes media query listeners and exports base globals
Base component for odo components. Includes media query listeners and exports base globals
npm install @odopod/odo-base-component --save
import OdoBaseComponent from '@odopod/odo-base-component';
class CoolModule extends OdoBaseComponent {
constructor(element) {
// Add media query listeners for this component.
super(element, true);
// Optionally call the listener on init.
this.onMediaQueryChange();
}
/**
* Do something when the breakpoint switches.
*/
onMediaQueryChange() {
this.element.className = '';
if (this.breakpoint.matches('xs') || this.breakpoint.matches('sm')) {
this.element.classList.add('xs-or-sm');
} else {
this.element.classList.add('md-or-lg');
}
this.element.classList.add('cool--' + OdoBaseComponent.breakpoint.current);
}
}
Visit the Odo component directory for demos, code examples, and documentation.
Draggable [1.2.1], Carousel [2.1.1], Dual Viewer [1.1.2] - 2018-4-28
didMoveOnAxis
, isDirectionOnAxis
). This caused the carousel to not navigate after dragging.FAQs
Base component for odo components. Includes media query listeners and exports base globals
We found that @odopod/odo-base-component demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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 researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.