{"id":19695266,"url":"https://github.com/catpea/visual-programming-language","last_synced_at":"2025-02-27T10:50:07.310Z","repository":{"id":216984104,"uuid":"742876202","full_name":"catpea/visual-programming-language","owner":"catpea","description":"User Friendly Visual Programming Language","archived":false,"fork":false,"pushed_at":"2024-03-30T13:47:11.000Z","size":4472,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-10T10:21:16.614Z","etag":null,"topics":["dataflow-programming","flow-based-programming","graph-editor","low-code","node-editor","visual-programming"],"latest_commit_sha":null,"homepage":"https://catpea.github.io/visual-programming-language/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/catpea.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-01-13T16:26:26.000Z","updated_at":"2024-03-04T00:53:30.000Z","dependencies_parsed_at":"2024-02-25T21:29:35.609Z","dependency_job_id":"d603ced1-3664-4a2d-8bd5-3ad8164d762f","html_url":"https://github.com/catpea/visual-programming-language","commit_stats":null,"previous_names":["catpea/visual-programming-language"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/catpea%2Fvisual-programming-language","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/catpea%2Fvisual-programming-language/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/catpea%2Fvisual-programming-language/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/catpea%2Fvisual-programming-language/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/catpea","download_url":"https://codeload.github.com/catpea/visual-programming-language/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241005663,"owners_count":19892835,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dataflow-programming","flow-based-programming","graph-editor","low-code","node-editor","visual-programming"],"created_at":"2024-11-11T19:26:55.974Z","updated_at":"2025-02-27T10:50:07.292Z","avatar_url":"https://github.com/catpea.png","language":"JavaScript","readme":"# Visual Programming Language\nUser Friendly Visual Programming Language\n\n## Laws\n- Parent Components Sets The Scene: the child must ass it's .g to the scene (add its svg group to scene set by parent)\n- All Controls Have Ports: a control no matter how large or small can paint ports.\n- method naming scheme: add + Window + Component = action Parent Class + Class Of Object\n- all Controls have this.anchors where named anchors must be stored\n- Externally, you may not interact with object's properties directly, only via methods (creating an api, and taking care of minot config)\n- root container always has a node, node always has an origin, origin has a root\n\n## TODO\n- [ ] Developer Tooling\n- [ ] Live Cycle Management\n- [ ] HORIZONTAL LAYOUT! for toolbox\n- [x] BUG: vector-effect: 'non-scaling-stroke'; belongs on SVG element\n- [x] Junctions\n- [ ] Project Save\n- [ ] Generator\n- [ ] Selection Manager\n\n- [ ] make plug-ins/visual-editor/VisualEditor.js load nodes, junctions, and edges\n- [ ] add a special I/O node set, each time I is added or removed number of input ports change.\n- [ ] legitimize on stop on start in Universe\n\n```JavaScript\n\n\u003cscript\u003e\n  import fsm from 'svelte-fsm';\n\n  const simpleSwitch = fsm('off', {\n    off: { toggle: 'on' },\n    on: { toggle: 'off' }\n  });\n\u003c/script\u003e\n\n\u003cbutton value={$simpleSwitch} on:click={simpleSwitch.toggle}\u003e\n  {$simpleSwitch}\n\u003c/button\u003e\n\n```\n\n- [ ] Create worlds to visualize this program\n\n- make the tray into a draggable Window\n- give trays connections\n- create special IO nodes in the node world, when added it makes a port in the world box\n\n- [ ] add a Generator\n- [ ] give worlds their nodes, and make the code generator visit\n- [ ] Wherever properties are used they must be shut down\n\n## Architecture\n\n  - index.html calls src/index.js\n  - src/Root.js Root Window is created\n  - Workspace is created\n\n## Scene\n\n  Parents set the .scene for child components to append themselves to.\n  Parents set the .parent property to \"this\" as well.\n\n## Program Ideas\n\n- [ ] Split Screen App Example (in-\u003ef-\u003eout)\n- [ ] ELIZA Chatbot\n- [ ] Wiki Wiki\n- [ ] ExpressJs/KOA Route Builder\n- [ ] Sharp Image Processor\n- [ ] Request Response Patter Builder\n- [ ] State And Reducers Pattern Builder\n- [ ] Image Gallery Builder ★★☆☆☆\n- [ ] Static Site Generator: Antwerp Yutani ★☆☆☆☆\n- [ ] Atom/Pulsar Plugin For Application Structure Visualization ★☆☆☆☆\n- [ ] Prompt Builder ☆☆☆☆☆\n- [ ] Ask AI for a list, go over each item refining it with greater detail ☆☆☆☆☆\n- [ ] Drop a node anywhere in a web page, monitor/send events and data ☆☆☆☆☆\n- [ ] Video Slideshow Generator ☆☆☆☆☆\n- [ ] RxJs GUI ☆☆☆☆☆\n- [ ] ffmpeg GUI ☆☆☆☆☆\n\n\n## Acknowledgments\n\n- Bootstrap Icons\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcatpea%2Fvisual-programming-language","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcatpea%2Fvisual-programming-language","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcatpea%2Fvisual-programming-language/lists"}