codemirror-binder

1.3.8 • Public • Published

codemirror-binder npm version

CodeMirror binder creator for defi.js

The binder creator returns a binder which initializes and binds CodeMirror instance (created using fromTextArea function) to a property.

Usage

npm i codemirror-binder
import { bindNode } from 'defi';
import codeMirrorBinder from 'codemirror-binder';
 
// ...
bindNode(obj, 'code', textarea, codeMirrorBinder());

Usage in a browser environment

For non-CJS environment the bundle can be downloaded at gh-pages branch.

In the browser environment the script exports a global variable codeMirrorBinder.

<script src="path/to/codemirror-binder.min.js"></script>

Configuration

The function accepts one argument: configuration object which is passed into the internal call of CodeMirror.fromTextArea. Read the CodeMirror documentation for more info.

bindNode(obj, 'code', textarea, codeMirror({
    lineNumbers: true,
    mode: 'htmlmixed'
}));

Readme

Keywords

Package Sidebar

Install

npm i codemirror-binder

Weekly Downloads

2

Version

1.3.8

License

MIT

Unpacked Size

3.25 kB

Total Files

3

Last publish

Collaborators

  • finom