
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
uxcore-user-guide
Advanced tools
React user guide
git clone https://github.com/uxcore/uxcore-aito-user-guide
cd uxcore-aito-user-guide
npm install
npm run server
if you'd like to save your install time,you can use uxcore-tools globally.
npm install uxcore-tools -g
git clone https://github.com/uxcore/uxcore-aito-user-guide
cd uxcore-aito-user-guide
npm install
npm run dep
npm run start
npm run test
npm run coverage
http://uxcore.alibaba.net/components/uxcore-aito-user-guide?type=others
Yes please! See the CONTRIBUTING for details.
一个产品或者页面中可能有多个引导,需要给每个引导做一个key
const UserGuide = require('uxcore-user-guide').getWithKey('guide-key', {
// config here
// prefixCls,
// className
});
然后给这个引导添加步骤,每个步骤可以有4种选择
const Step1 = UserGuide.addUserGuide({
dom: 'button',
step: 1,
hint: '我是第一步提示',
type: 'ReactComponent',
});
const Step1 = UserGuide.addUserGuide({
dom: document.getElementById('app'),
step: 2,
hint: '我是第二步提示',
type: 'HTMLElement',
});
const Step1 = UserGuide.addUserGuide({
getDom() { return document.getElementById('app'); },
step: 3,
hint: '我是第三步提示',
type: 'HTMLElementMaker',
});
UserGuide.addUserGuide({
step: 4,
hint: '我是第四步的提示,我也没有对应的DOM',
type: 'Image',
top: 1800,
left: 1000,
image: 'https://img.alicdn.com/tfs/TB1TRNAllfH8KJjy1XbXXbLdXXa-240-240.png',
imageHeight: 120,
imageWidth: 120,
});
需要开始引导时,需要
UserGuide.start('guide-key');
FAQs
uxcore-user-guide component for uxcore.
The npm package uxcore-user-guide receives a total of 5 weekly downloads. As such, uxcore-user-guide popularity was classified as not popular.
We found that uxcore-user-guide 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.