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.
@beisen/beisen-scroll-bar
Advanced tools
BeisenScrollBar
import React, {Component, PropTypes} from 'react'
import {render} from 'react-dom'
import BeisenScrollBar from './src/index';
//引入必须的依赖之后,我们引入要嵌入的组件或者html,和样式文件。
import Containner from './src/outerComponent/containner';
import './src/style/componentClass.scss'
class Demo extends Component{
handleScroll(scrollData){
//这里我们可以获得坐标数据
console.log(scrollData);
}
render () {
//style可以设置滚动区域的整体样式。
//当然支持手动加一个类,通过类名来控制样式(推荐)
//contentClassName:为被包裹的内部页面套一个div,这里可以控制整个被嵌对象的样式。
//handleScroll:回调函数,滚动时,实时获得滚动信息。
//verticalScrollbarStyle:垂直滚动条的样式。
//horizontalScrollbarStyle:水平滚动条的样式。
let style = {'width':'300px','height':'300px'};
let scrollbarStyles = {borderRadius: 5};
return (
<div>
<BeisenScrollBar style={style}
className={'area'}
contentClassName={'scrollContent'}
handleScroll={this.handleScroll}
verticalScrollbarStyle={scrollbarStyles}
horizontalScrollbarStyle={scrollbarStyles}>
<Containner />
</BeisenScrollBar >
</div>
)
}
}
render(<Demo />, document.getElementById('content'));
FAQs
beisen-scroll-bar
We found that @beisen/beisen-scroll-bar demonstrated a not healthy version release cadence and project activity because the last version was released 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.
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.