
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
一套桌面端 San Ui 组件库。基于 iView样式进行开发
<!-- import san -->
<script src="//unpkg.com/san@latest"></script>
<!-- import stylesheet -->
<link rel="stylesheet" href="//unpkg.com/san-iview/dist/styles/san-iview.css">
<!-- import san-iview -->
<script src="//unpkg.com/san-iview/dist/san-iview.min.js"></script>
示例
const {Button, Message} = window['san-iview'];
const Demo = san.defineComponent({
template: `
<div class="parent">
<btn type="primary" on-select="change">
add child
</btn>
</div>`,
components: {
btn: Button
},
change() {
Message.success('hello world');
}
});
const demo = new Demo();
demo.attach(document.body);
npm安装npm install san-iview --save
// main.js
import san from 'san';
import 'san-iview/dist/styles/san-iview.css';
import App from './App';
const app = new App();
app.attach(document.getElementById('app'));
// App.san
<template>
<div>
<icon type="ionic"></icon>
</div>
</template>
<script>
import {Icon} from 'san-iview';
export default {
components: {
'icon': Icon
}
};
</script>
Copyright (c) 2017-present, san-view
FAQs
A high quality UI components Library with San
The npm package san-iview receives a total of 14 weekly downloads. As such, san-iview popularity was classified as not popular.
We found that san-iview 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.

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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.