knockout-ace

1.0.1 • Public • Published

knockout-ace

Knockout bindings for the ACE embeddable code editor (using brace)

NPM version

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

/knockout-ace/

    Package Sidebar

    Install

    npm i knockout-ace

    Weekly Downloads

    5

    Version

    1.0.1

    License

    MIT

    Last publish

    Collaborators

    • forbeslindesay