https://github.com/froala/meteor-froala
Meteor bindings for the Froala WYSIWYG HTML Editor.
https://github.com/froala/meteor-froala
Last synced: 4 months ago
JSON representation
Meteor bindings for the Froala WYSIWYG HTML Editor.
- Host: GitHub
- URL: https://github.com/froala/meteor-froala
- Owner: froala
- License: mit
- Created: 2014-11-27T10:14:37.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2026-01-15T12:05:16.000Z (5 months ago)
- Last Synced: 2026-01-18T00:41:47.979Z (5 months ago)
- Language: CSS
- Homepage: https://froala.com/wysiwyg-editor
- Size: 12.7 MB
- Stars: 69
- Watchers: 11
- Forks: 20
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Meteor Froala WYSIWYG HTML Editor
>A beautiful Javascript WYSIWYG HTML text editor for [Meteor](https://github.com/meteor/meteor).
Check out the [Froala editor homepage](https://froala.com/wysiwyg-editor) for more details.
## How do I use it?
1.Open terminal in your meteor project directory and execute following command:
```bash
meteor add froala:editor
```
2.Create a froala-template in your main.html file.
```
Hello Froala
```
3.Include the template in body of html.
```
{{> froala}}
```
4.Run froala when template is rendered in main.js file.
```
Template.froala.rendered = function () {
new FroalaEditor('.editor');
};
```
## License
The `meteor-froala` project is under MIT license. However, in order to use Froala WYSIWYG HTML Editor plugin you should purchase a license for it.
Froala Editor has [3 different licenses](https://froala.com/wysiwyg-editor/pricing/) for commercial use.
For details please see [License Agreement](https://froala.com/wysiwyg-editor/terms).