knockout-ace
v1.0.1
Published
Knockout bindings for the ACE embeddable code editor (using brace)
Downloads
3
Readme
knockout-ace
Knockout bindings for the ACE embeddable code editor (using brace)
Installation
npm install knockout-ace
N.B. This module peer depends on brace
and knockout
. It will fail to install if you are not using the same version of knockout and brace as this module. You will need to require in whichever themes and modes you want from brace (see brace documentation)
Example
To use, simply use the ace
data binding:
<div data-bind="ace: sourceText, aceOptions: { mode: 'sql', theme: 'textmate' }"></div>
var ko = require('knockout');
require('knockout-ace');
require('brace/theme/textmate');
require('brace/mode/sql');
ko.applyBindings({
sourceText: 'SELECT * FROM aceModes'
});
License
MIT