Big News: Socket Selected for OpenAI's Cybersecurity Grant Program.Details
Socket
Book a DemoSign in
Socket

cep-lib

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cep-lib

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

latest
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

CircleCI NPM version NPM downloads License Issues

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).

Keywords

cep

FAQs

Package last updated on 24 Jun 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts