
Research
/Security News
Malicious Chrome and Firefox Extensions Steal Crypto Traders’ Session and Wallet Data
Malicious Chrome and Firefox extensions target Axiom Trade and Padre users, stealing session tokens and wallet data.
@markdown-ui/mdui-lang
Advanced tools
Write widgets 60% faster with concise DSL syntax.
Transform verbose JSON into elegant one-liners that actually make sense.
select env [dev staging prod] dev
↓
{"type": "select", "id": "env", "choices": ["dev", "staging", "prod"], "default": "dev"}
npm install @markdown-ui/mdui-lang
import { parseDSL } from '@markdown-ui/mdui-lang';
const result = parseDSL('text-input username "Username" "Enter username"');
console.log(result.widget);
// Perfect JSON output, ready to use
Single-line widgets
text-input username "Username" "Enter here"
button-group env [dev staging prod] dev
select region [us-east us-west] us-east
slider cpu 1 32 1 4
Multi-line forms
form deploy "Launch"
text-input name "App Name"
select env [dev prod] dev
slider replicas 1 10 1 3
Interactive charts
chart-line
title: Monthly Sales
height: 300
Month,Sales,Target
Jan,100,120
Feb,150,140
Mar,200,180
All parameters after id are optional and positional.
text-input username "User Name"[dev staging prod]"Enter your name here"interface ParseResult {
success: boolean;
widget?: Widget; // Parsed widget if successful
error?: string; // Error message if failed
}
const result = parseDSL('select env [dev prod]');
if (result.success) {
console.log(result.widget); // Ready-to-use JSON
}
Why DSL beats JSON
❌ JSON (130 chars)
{"type": "text-input", "id": "username", "label": "Username", "placeholder": "Enter username", "default": "john"}
✅ DSL (52 chars)
text-input username "Username" "Enter username" "john"
60% fewer keystrokes. 100% more readable.
MIT © 2025
FAQs
DSL parser for markdown-ui widgets
The npm package @markdown-ui/mdui-lang receives a total of 62 weekly downloads. As such, @markdown-ui/mdui-lang popularity was classified as not popular.
We found that @markdown-ui/mdui-lang demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Research
/Security News
Malicious Chrome and Firefox extensions target Axiom Trade and Padre users, stealing session tokens and wallet data.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.