Skip to content

Common pipeline-editor components used in different clients (e.g. Elyra application, Web browser extensions, etc)

License

Notifications You must be signed in to change notification settings

EdgarAllan-Bro/pipeline-editor

This branch is 13 commits behind elyra-ai/pipeline-editor:main.

Folders and files

NameName
Last commit message
Last commit date
Apr 20, 2022
Jun 19, 2023
Mar 16, 2021
Feb 16, 2021
Jun 19, 2023
Jun 19, 2023
Feb 17, 2021
Jun 19, 2023
Jun 19, 2023
Jun 19, 2023
Mar 16, 2021
Feb 16, 2021
Jun 19, 2023
Feb 15, 2021
Jun 19, 2023
Jun 19, 2023
Jun 19, 2023
Mar 16, 2021
Jun 19, 2023
Jun 19, 2023
Jan 23, 2023
Jan 23, 2023
Feb 16, 2021
Jul 11, 2023

Repository files navigation

Elyra Pipeline Editor

Pipeline Editor

A react component for editing pipeline files. Used across all Elyra applications and browser extensions.

NPM Status Test Status

Installation

@elyra/pipeline-editor is available as an npm package:

// npm
npm install @elyra/pipeline-editor

// yarn
yarn add @elyra/pipeline-editor

Or can be built and linked locally:

git clone git@github.com:elyra-ai/pipeline-editor.git
cd pipeline-editor

make clean install dev-link

Then in the project you're using the local build run the following:

yarn link @elyra/pipeline-editor @elyra/pipeline-services

or if you're running with Elyra you can use make:

make clean dev-link install

Usage

import { PipelineEditor } from "@elyra/pipeline-editor";

function App() {
  const [pipeline, setPipeline] = useState();
  return (
    <PipelineEditor pipeline={pipeline} palette={{}} onChange={setPipeline} />
  );
}

About

Common pipeline-editor components used in different clients (e.g. Elyra application, Web browser extensions, etc)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 96.2%
  • JavaScript 1.9%
  • Python 1.7%
  • Other 0.2%