FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

sammarks/cep-lib: JS wrapper functions to aid in the development of CEP plugins. · GitHub

Repository files navigation

cep-lib is a set of JS wrapper functions to aid in the development of CEP plugins.

Get Started

npm install --save cep-lib
import { evalScript, getCSInterface } from 'cep-lib/csinterface'
import { deleteFile } from 'cep-lib/cep'

const result = evalScript('extendScriptFunction()')
console.log(result)

const rawCSInterface = getCSInterface()

deleteFile('/tmp/foo')

Note: It is not recommended to import the cep-lib root. If you do so, you will receive a warning message. Each library has been packaged separately in order to allow developers to only import what they need. Also note that the libraries do not have default exports.

Features

  • Provides a wrapper around the CSInterface library, while still providing access to the underlying library.
  • Provides a wrapper around certain CEP-related functions (just some IO functions for now).

About

JS wrapper functions to aid in the development of CEP plugins.

Topics

Resources

Stars

3 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages


Back | FazBrowse Home | New Git URL