{"id":13670082,"url":"https://github.com/mayahq/maya-toy-engine","last_synced_at":"2025-04-27T09:31:49.103Z","repository":{"id":119033856,"uuid":"218816028","full_name":"mayahq/maya-toy-engine","owner":"mayahq","description":"Toy engine + DSL for DAG generation experiments.","archived":false,"fork":false,"pushed_at":"2021-05-12T00:32:30.000Z","size":86760,"stargazers_count":3,"open_issues_count":3,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-08-03T09:07:01.787Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mayahq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2019-10-31T16:56:27.000Z","updated_at":"2022-08-27T09:08:33.000Z","dependencies_parsed_at":"2023-12-21T05:21:39.835Z","dependency_job_id":"8e78aef7-65da-411d-9b0e-3e5b8d183f50","html_url":"https://github.com/mayahq/maya-toy-engine","commit_stats":null,"previous_names":["sibeshkar/maya-engine"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayahq%2Fmaya-toy-engine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayahq%2Fmaya-toy-engine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayahq%2Fmaya-toy-engine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mayahq%2Fmaya-toy-engine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mayahq","download_url":"https://codeload.github.com/mayahq/maya-toy-engine/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224067017,"owners_count":17250098,"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":[],"created_at":"2024-08-02T09:00:31.995Z","updated_at":"2024-11-11T07:31:09.010Z","avatar_url":"https://github.com/mayahq.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"\n## Maya Flow-Based Toy Robot Engine\n\nThis language engine has been adapted from the language-agnostic flow-based language Cascades in order to create a toy sandbox to experiment with dynamic generation of DAGs (Directed Acyclic Graphs). It has a limited dictionary of components that can be wired together to do various complicated tasks. \n\n### Cascades - Language-Agnostic Programming Framework for Data-Driven Applications\n\nCascades is language-agnostic [dataflow](http://en.wikipedia.org/wiki/Dataflow_programming) programming framework that implements a number of the [Flow-Based Programming](http://en.wikipedia.org/wiki/Flow-based_programming) (FBP) concepts. Although we consider Cascades to be a general-purpose programming framework we have created it having a, as J. P. Morrison described: a *data factory mental image in mind, where the application is expressed as a series of transforms on data streams - which requires fundamental changes from the old von Neumann thinking in the way programmers build applications*.\n\n### Features of Cascades\n\n * Cascades is cross-platform (can be used on OSX/Linux/Windows, tested also on Raspberry PI and Beagleboard Black) and completely written in [Go](http://golang.org/) programming language. \n * Uses [ZeroMQ](http://zeromq.org) for connections between the components.\n * The core components are also written in Go, but you are free to choose any programming language of your choice as long as there are bindings for it (currently it supports: C, C++, C#, CL, Delphi, Erlang, F#, Felix, Haskell, Java, Objective-C, PHP, Python, Lua, Ruby, Ada, Basic, Clojure, Go, Haxe, Node.js, ooc, Perl, and Scala)\n * Supports flows defined using NoFlo's [JSON](http://noflojs.org/documentation/json/) format or FBP [DSL](http://noflojs.org/documentation/fbp/) language.\n\nVisit our [Wiki](https://github.com/mayahq/maya-toy-engine/wiki) for details on how to get started.\n\n## Usage\n\nGeneral usage is described below:\n\n```\nNAME:\n   cascades - A Cascades FBP runtime/scheduler for the FBP applications.\n\nUSAGE:\n   cascades [global options] command [command options] [arguments...]\n\nVERSION:\n   0.1.0\n\nCOMMANDS:\n   run      Runs a given graph defined in the .fbp or .json formats\n   library  Manages a library of components\n   help, h  Shows a list of commands or help for one command\n\nGLOBAL OPTIONS:\n   --file, -f 'library.json'  components library file\n   --debug, -d       enable extra output for debug purposes\n   --help, -h        show help\n   --version, -v     print the version\n```\n\n## Get Dependencies \n```\ngo get github.com/mayahq/maya-toy-engine/cmd/cascades\n\n```\n\n## Building Binary\n\nBuilding the binary: \n```\ngo build ./cmd/cascades\n\n```\n\n## Adding new components\n\nBuilding new components\n```\ngo build -o components_built/maya/click ./components/maya/click\n./cascades library add ./components_built/\n```\nBuild in bulk : \n```\n./build.sh\n```\n\nAdd components to library, will be added to library.json : \n```\n./cascades library add ./components_built/\nOR \n./addToLibrary.sh\n```\n\n## Run FBP file\n\nTo test that everything is working as expected, run this test.\n\n```\n./cascades --debug run ./examples/maya_test.fbp\n```\n\n## License\n\nThe MIT License\n\nCopyright \u0026copy; 2020\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmayahq%2Fmaya-toy-engine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmayahq%2Fmaya-toy-engine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmayahq%2Fmaya-toy-engine/lists"}