New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

zep-script

Package Overview
Dependencies
Maintainers
2
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zep-script

ZEP Script API for ZEP app

latest
npmnpm
Version
0.16.2
Version published
Weekly downloads
26
-77.19%
Maintainers
2
Weekly downloads
 
Created
Source

ZEP Script

Development support for ZEP Script.

Installation

Initialize a new ZEP Script project

npx zep-script init MyZepApp

Add to existing ZEP Script project

yarn add zep-script --dev
# or
npm install zep-script --save-dev

Usage

Using CLI

You can use useful command line interface provided by this package.

See usage of the CLI in here.

TypeScript support

You can use TypeScript type definitions provided by this package.

Add following at the top of your main.ts file:

import 'zep-script';

Then you will be able to use ZEP Script's namespaces in global scope.

import 'zep-script';

ScriptApp.showCenterLabel("Hello world");

Transpiling

As some APIs of ZEP Script conflicts with TypeScript's namespaces, you need to use babel to transpile your code.

Add plugin to your babel config:

module.exports = {
  // ...
  plugins: [
    // ...
    '@zep.us/zep-script',
  ],
};

ZEP Script API Documentation

Refer to official documentation page:

  • English
  • Korean

FAQs

Package last updated on 25 Jun 2025

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