
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@netless/app-little-white-board
Advanced tools
Netless App for Small whiteboard that can switch between different scene screens
Netless App for Small whiteboard that can switch between different scene screens
npm add @netless/app-little-white-board
Register this app to WindowManager before use:
import LittleBoard from "@netless/app-little-white-board";
WindowManager.register({
kind: "LittleBoard",
src: LittleBoard,
appOptions: {
/** 是否静止画布放缩或拖拽 */
disableCameraTransform: true,
/** 上传图片,返回插入图片的信息 */
async onClickImage(){
// 弹出云盘,模拟1s之后放回图片信息
return new Promise((resolve) => {
setTimeout(()=>{
resolve({
uuid: Date.now().toString(),
src: 'https://p5.ssl.qhimg.com/t01a2bd87890397464a.png',
centerX: 0,
centerY: 0,
width: 100,
height: 100,
uniformScale: false
});
}, 1000)
});
}
// 可选, 发布问题
onMount:(appId:string, userId:string) => {
console.log('LittleBoard Mount', appId, userId);
// 禁止编辑
!isWritable && manager?.setReadonly(true);
},
// 可选, 发布问题
onPublishQuestion:(appId:string, userId:string)=>{
console.log('LittleBoard PublishQuestion', appId, userId);
},
// 可选, 提交答案
onCommit:(appId:string, userId:string) => {
console.log('LittleBoard Commit', appId, userId);
}
}
});
Insert LittleBoard courseware into the room:
manager.addApp({
kind: "LittleBoard",
options: {
title: "小白板",
/** 必需, 白板的路径 */
scenePath: '/LittleBoard'
},
attributes: {
/** 老师的uid */
uid: isWritable && sessionStorage.getItem('uid'),
}
});
Only one user could control the app (navigate pages, click stuff in it). so attributes.uid
must be set to the teacher's uid.
FAQs
Netless App for Small whiteboard that can switch between different scene screens
The npm package @netless/app-little-white-board receives a total of 1 weekly downloads. As such, @netless/app-little-white-board popularity was classified as not popular.
We found that @netless/app-little-white-board 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.