zep-script
TypeScript icon, indicating that this package has built-in type declarations

0.13.2 • Public • Published

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:

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i zep-script

    Weekly Downloads

    12

    Version

    0.13.2

    License

    MIT

    Unpacked Size

    37.3 kB

    Total Files

    12

    Last publish

    Collaborators

    • wjaykim
    • zepdevelopers
    • sungwoon