Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
react-email-editor
Advanced tools
The excellent Unroll email editor as a React.js component. This is the most powerful and developer friendly email builder for your app.
Video Overview |
---|
Watch video overview: https://youtu.be/IoY7-NZ8TcA |
The easiest way to use React Email Editor is to install it from NPM and include it in your own React build process.
npm install react-email-editor --save
Require the EmailEditor component and render it with JSX:
import React, { Component } from 'react'
import { render } from 'react-dom'
import EmailEditor from 'react-email-editor'
class App extends Component {
render() {
return <div>
<h1>react-email-editor Demo</h1>
<div>
<button onClick={this.exportHtml}>Export HTML</button>
</div>
<EmailEditor
ref={designer => this.designer = designer}
/>
</div>
}
exportHtml = () => {
this.designer.exportHtml(html => {
console.log('exportHtml', html)
})
}
}
render(<App />, document.getElementById('app'))
style
Object
style object for the editor container (default {})minHeight
String
minimum height to initialize the editor with (default 500px)options
Object
options passed to the Unroll editor instance (default {})See the Unroll Docs for all available options.
See the example source for a reference implementation.
Copyright (c) 2016 Jed Watson. MIT Licensed.
FAQs
Unlayer's Email Editor Component for React.js
The npm package react-email-editor receives a total of 18,175 weekly downloads. As such, react-email-editor popularity was classified as popular.
We found that react-email-editor demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.