
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@gluttons/tablex
Advanced tools
<div id="container"></div>
import { TableX } from '@gluttons/tablex';
/**
* 原始 tablex 对象,核心
*/
const tablex = new Tablex({
/**
* 模块配置
*/
modules: [{
/**
* 表格数据
*/
data: [
// 行
['分类', '名称', '数量'],
[{
value: '大类1',
// 跨越两行
rowspan: 2
}, '小分类1', 10],
['小分类2', 15]
]
}],
});
const {
/**
* 视图实例对象
*/
view,
/**
* 绘制钩子
* @description 调用可强制重绘
*/
draw,
/**
* 卸载钩子
* @description 卸载此视图实例
*/
unmount,
} = tablex.mount(container);
上面代码显示以下效果
| 分类 | 名称 | 数量 |
| 大类1 | 小分类1 | 10 |
| 小分类2 | 15 |
import { TableX, Editor } from '@gluttons/tablex';
const tablex = new TableX({
// ...省略代码
});
const editor = new Editor(container, tablex);
tablex.mount(editor);
FAQs
基于canvas的高性能表格
We found that @gluttons/tablex 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.
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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.