https://github.com/mlewand/ckeditor-plugin-boilerplate
A boilerplate for quick CKEditor 4 plugin development.
https://github.com/mlewand/ckeditor-plugin-boilerplate
boilerplate ckeditor ckeditor4 npm wysiwyg
Last synced: 28 days ago
JSON representation
A boilerplate for quick CKEditor 4 plugin development.
- Host: GitHub
- URL: https://github.com/mlewand/ckeditor-plugin-boilerplate
- Owner: mlewand
- Created: 2017-03-20T21:30:09.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-20T22:06:51.000Z (about 9 years ago)
- Last Synced: 2025-03-18T06:23:20.886Z (about 1 year ago)
- Topics: boilerplate, ckeditor, ckeditor4, npm, wysiwyg
- Language: JavaScript
- Homepage:
- Size: 24.4 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ckeditor-plugin-boilerplate
This repository contains a simple CKEditor plugin boilerplate.
## Usage
Just clone it and start editing your [plugin.js](plugin.js) file.
You can preview your plugin in [samples/index.html](samples/index.html).
### Testing
This plugin has also a basic testing infrastructure set up. All you need is:
```bash
npm install
npm run test-server
```
This will run a [Bender.js](https://github.com/benderjs/benderjs) instance, listening at [localhost:1030](http://localhost:1030/).
For more information on how to test CKEditor, see [CKEditor Testing Environment](http://docs.ckeditor.com/#!/guide/dev_tests) guide.