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.
@kqinfo/ui
Advanced tools
$ yarn add @kqinfo/ui
安装babel-plugin-import
插件
$ yarn add babel-plugin-import -D
修改babel.config.js
文件
// babel.config.js
module.exports = {
plugins: [
+ [
+ 'import',
+ {
+ libraryName: 'parsec-hooks',
+ camel2DashComponentName: false,
+ customName: name => {
+ if (/^(use)/.test(name)) {
+ return `parsec-hooks/lib/${name
+ .replace(/^(use)/, '')
+ .replace(/^\S/, s => s.toLowerCase())}Hooks`;
+ } else {
+ return `parsec-hooks/lib/utils/${name}`;
+ }
+ }
+ }
+ ],
+ [
+ 'import',
+ {
+ libraryName: 'antd-mobile',
+ style: true
+ },
+ 'antd-mobile'
+ ],
+ [
+ 'import',
+ {
+ libraryDirectory: 'es',
+ libraryName: '@kqinfo/ui'
+ },
+ '@kqinfo/ui'
+ ]
]
};
修改remax.config.js
文件
module.exports = {
...
- plugins: [less(), sass()],
+ plugins: [less({modifyVars: { '@brand-primary': '#2780d9' }}), sass()],
...
};
修改app.tsx
文件
+import { ConfigProvider } from '@kqinfo/ui';
const App = (props) => {
- return props.children;
+ return <ConfigProvider.Provider initialState={{brandPrimary: '#2780d9'}}>{props.children}</ConfigProvider.Provider>;
};
安装依赖
$ yarn
启动服务
$ yarn start
启动调试
$ yarn dev
本地连接
$ yarn link
本地项目调试
$ yarn link @kqinfo/ui
fork
到自己名下,再提merge request
less-modules
value
和onChange
icon
class
,缩写用cls
,比如暴露子项类名就用itemCls
FAQs
[![NPM version][npm-image]][npm-url] [![Test coverage][codecov-image]][codecov-url] [![npm download][download-image]][download-url]
The npm package @kqinfo/ui receives a total of 472 weekly downloads. As such, @kqinfo/ui popularity was classified as not popular.
We found that @kqinfo/ui 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.
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.