Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@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
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.
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.