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.
develop-panel
Advanced tools
A library for you to build a develop panel easily.
npm i develop-panel
or
yarn add develop-panel
or
pnpm i develop-panel
import { DevPanel } from 'develop-panel';
DevPanel.create({
el: 'hahaha',
plugins: ['reload'],
content: [
{
type: 'text',
value: '这时一个调试页面',
},
{
type: 'map',
label: '用户名',
value: 'test-user',
},
{
type: 'button',
value: '点我触发功能',
onClick: () => {
console.log('233');
},
},
{
type: 'switch',
label: '开启功能',
key: 'open',
default: false,
onChange: (val) => {
console.log(val);
},
},
{
type: 'select',
label: '单选',
key: 'one',
options: [
{
label: '选项1',
value: '0',
},
{
label: '选项2',
value: '1',
},
{
label: '选项3',
value: '2',
},
],
onChange: (val) => {
console.log(val);
},
},
{
type: 'select',
label: '多选',
multiple: true,
key: 'two',
options: [
{
label: '选项1',
value: '0',
},
{
label: '选项2',
value: '1',
},
{
label: '选项3',
value: '2',
},
],
onChange: (val) => {
console.log(val);
},
},
{
type: 'input',
label: '输入 ID',
key: 'id',
default: '',
placeholder: '输入 ID',
onChange: (val) => {
console.log(val);
},
},
],
}).render(true);
FAQs
A library for building a dev panel easily.
The npm package develop-panel receives a total of 0 weekly downloads. As such, develop-panel popularity was classified as not popular.
We found that develop-panel 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.