
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.
react-trix-editor
Advanced tools
A React component for Trix.
Install via npm: npm install react-trix-editor.
Import from react-trix-editor.
If you would like to use the component without styling, import from react-trix-editor/ReactTrixEditor.
Example:
import ReactTrixEditor from 'react-trix-editor';
class ReactTrixEditorDemo extends Component {
constructor() {
super();
this.onChange = this.onChange.bind(this);
}
state = {
value: ''
}
onChange(value) {
this.setState({
value
});
}
render() {
const testProps = {
onChange: this.onChange,
onEditor(editor) { console.log(`Editor callback: `, editor); },
initialValue: 'Hello World',
placeholder: 'A placeholder shown when the text editor is empty'
};
return <ReactTrixEditor {...testProps} />;
}
}
| Name | Type | Description | Required | Default |
|---|---|---|---|---|
| onChange | func | Passes editor's state when input is received | true | |
| onEditor | func | Provides a Trix editor obj on initialisation (see docs) | ||
| autofocus | bool | Should the editor have autofocus | false | |
| input | string | A unique ID for the editor | 'react-trix-editor' | |
| placeholder | string | Placeholder for the text editor | 'Enter text here...' | |
| initialValue | string | Text to insert into the text editor on initialisation |
onEditor passes a Trix editor object that can be used to programmatically change the text editor.input is a unique ID for a hidden input element used by Trix. You only need to ensure this is unique if you have multiple instances of this component on a single page.FAQs
A React component for Basecamp's Trix text editor
We found that react-trix-editor 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
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.