
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.
atomic-react-tinymce
Advanced tools
React TinyMCE component
$ npm install react-tinymce
http://instructure-react.github.io/react-tinymce/
import React from 'react';
import ReactDOM from 'react-dom';
import TinyMCE from 'react-tinymce';
const App = React.createClass({
handleEditorChange(e) {
console.log(e.target.getContent());
},
render() {
return (
<TinyMCE
content="<p>This is the initial content of the editor</p>"
config={{
plugins: 'autolink link image lists print preview',
toolbar: 'undo redo | bold italic | alignleft aligncenter alignright'
}}
onChange={this.handleEditorChange}
/>
);
}
});
ReactDOM.render(<App/>, document.getElementById('container'));
This component depends on tinymce being globally accessible.
<script src="//tinymce.cachefly.net/4.2/tinymce.min.js"></script>
install your dependencies:
npm install
rackt-cli depends on a version of babel-eslint that will not run successfully with
the rest of this project. Until an upgrade is available, after installing,
edit "node_modules/rackt-cli/package.json"
and update it's babel-eslint to at least 4.1.7. Then npm install in the rackt
directory, and return to project root. From here on you need to use the
rackt version in node modules, so either alias "rackt" to it's bin, or
just path each command into node_modules/.bin like below.
To make sure the linter is happy and the functional tests run, execute:
./node_modules/.bin/rackt test
To release, you'll need to be an npm owner for react-tinymce, and already
have your machine currently authed with npm adduser
https://docs.npmjs.com/cli/adduser
use ./node_modules/.bin/rackt release
MIT
FAQs
React TinyMCE component
We found that atomic-react-tinymce 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.