
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.
kfeditor-slate
Advanced tools
Another rich text editor using Slate framework.
$ npm install --save canner-slate-editor
In order to make image uploader work, you have to pass a prop called serviceConfig. serviceConfig can generate from https://github.com/Canner/image-service-config or you can directly pass props from https://ant.design/components/upload/ as object into serviceConfig prop.
// @flow
import React from 'react';
import ReactDOM from 'react-dom';
import {Value} from 'slate';
import CannerEditor from 'canner-slate-editor';
const initialValue = Value.fromJSON({
document: {
nodes: [
{
object: 'block',
type: 'paragraph',
nodes: [
{
object: 'text',
leaves: [
{
text: 'A line of text in a paragraph.',
}
],
},
],
},
],
},
});
class DemoEditor extends React.Component<*, {value: Value}> {
// Set the initial state when the app is first constructed.
state = {
value: initialValue
}
render() {
const {value} = this.state;
const onChange = ({value}) => this.setState({value});
return (
<div style={{margin: '20px'}}>
<CannerEditor
value={value}
onChange={onChange}
/>
</div>
);
}
}
ReactDOM.render(
<DemoEditor/>
, (document: any).getElementById('root'));
see https://github.com/Canner/canner-slate-editor/blob/master/docs/index.js
npm start
Apache 2.0 Canner
FAQs
Another rich text editor using Slate framework with toolbar support
We found that kfeditor-slate 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.