Core libraries and framework for building Workday Everywhere platform integrations.
Create a new directory for your Workday Everywhere plugin and install the SDK:
mkdir my-plugin && cd my-plugin
npm init -y
npm install @workday/everywhereDefine your plugin in a plugin.ts file:
import { plugin } from '@workday/everywhere';
export default plugin({
name: 'my-plugin',
version: '1.0.0',
description: 'My first Workday Everywhere plugin.',
});From your plugin directory, run:
npx @workday/everywhere infogit clone git@github.com:Workday/everywhere.git
cd everywhere/sdk
just setup| Command | Description |
|---|---|
just setup |
Install dependencies |
just check |
Typecheck and lint |
just test |
Run tests |
just tidy |
Format source files |