Skip to content

CreateBaseNZ/elena-editor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Elena Editor

This is a project to provide various types of editors to front end developers.

Current Progress

  • Flow Chart Editor - React

Coming Features

  • Monaco Editor

Installation

npm install elena-editor

or

yarn add elena-editor

Documentation

Flow Chart Editor (React)

import { FlowEditor } from "elena-editor";

Props

export interface ElenaNode {
  type: NodeType;
  name: string;
  id: string;
  xPos: number;
  yPos: number;
  isStatic: boolean;
  priority: number;
  inputs?: string[];
  outputs?: string[];
  code?: string;
}

The Flow Chart Editor uses a Node menu to specify which nodes are available to the user. The type of this menu is an array of ElenaNodes, shown above.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •