Skip to content

xtr0/knockout-ace

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Knockout bindings for the ACE embeddable code editor

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%