
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.
@gmsoft/tiny-editor
Advanced tools
富文本编辑器 react 组件
yarn add @gmsoft/tiny-editor
/**
* demo
*/
import React from 'react';
import TinyEditor, { TinyViewer } from '@gmsoft/tiny-editor';
export default () => {
const [value, setValue] = React.useState('');
return (
<>
<TinyEditor
// 如果需要使用图片上传功能, 要求服务器端返回的数据中包含 url 字段,url 字段值为图片的 url
uploadServer="https://demo.com/file"
defaultValue="place input something"
value={value}
onChange={setValue}
/>
<div>
value:
<TinyViewer>{value}</TinyViewer>
</div>
</>
);
};

FAQs
富文本编辑器 react 组件
The npm package @gmsoft/tiny-editor receives a total of 10 weekly downloads. As such, @gmsoft/tiny-editor popularity was classified as not popular.
We found that @gmsoft/tiny-editor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.

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.