{"id":18513483,"url":"https://github.com/arthursonzogni/smkflow","last_synced_at":"2025-04-09T06:33:27.507Z","repository":{"id":37319783,"uuid":"247510607","full_name":"ArthurSonzogni/smkflow","owner":"ArthurSonzogni","description":"A C++ dataflow node editor -- Compatible with WebAssembly.","archived":false,"fork":false,"pushed_at":"2022-12-20T01:14:25.000Z","size":490,"stargazers_count":63,"open_issues_count":0,"forks_count":12,"subscribers_count":7,"default_branch":"master","last_synced_at":"2024-08-04T02:10:03.692Z","etag":null,"topics":["arthursonzogni","cmake","cpp","editor","flow","node","smk"],"latest_commit_sha":null,"homepage":null,"language":"C++","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/ArthurSonzogni.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["ArthurSonzogni"]}},"created_at":"2020-03-15T16:58:24.000Z","updated_at":"2024-07-03T23:26:39.000Z","dependencies_parsed_at":"2023-01-29T23:15:20.565Z","dependency_job_id":null,"html_url":"https://github.com/ArthurSonzogni/smkflow","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArthurSonzogni%2Fsmkflow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArthurSonzogni%2Fsmkflow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArthurSonzogni%2Fsmkflow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArthurSonzogni%2Fsmkflow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArthurSonzogni","download_url":"https://codeload.github.com/ArthurSonzogni/smkflow/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223367527,"owners_count":17134130,"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":["arthursonzogni","cmake","cpp","editor","flow","node","smk"],"created_at":"2024-11-06T15:38:38.781Z","updated_at":"2024-11-06T15:38:40.081Z","avatar_url":"https://github.com/ArthurSonzogni.png","language":"C++","funding_links":["https://github.com/sponsors/ArthurSonzogni"],"categories":[],"sub_categories":[],"readme":"[smk]: https://github.com/ArthurSonzogni/smk\n[smkflow]: https://github.com/ArthurSonzogni/smkflow\n[logo]: ./logo.png\n\n![logo][logo]\n\n[![travis][badge.travis]][travis]\n[![issues][badge.issues]][issues]\n[![license][badge.license]][license]\n[![contributors][badge.contributors]][contributors]\n\n[badge.travis]: https://img.shields.io/travis/com/arthursonzogni/smkflow\n[badge.issues]: https://img.shields.io/github/issues-raw/arthursonzogni/smkflow\n[badge.license]: https://img.shields.io/github/license/arthursonzogni/smkflow?color=black\n[badge.contributors]: https://img.shields.io/github/contributors/arthursonzogni/smkflow?color=blue\n\n[travis]: https://travis-ci.com/ArthurSonzogni/smkflow\n[issues]: https://github.com/ArthurSonzogni/smkflow/issues\n[license]: http://opensource.org/licenses/MIT\n[contributors]: https://github.com/ArthurSonzogni/smkflow/graphs/contributors\n\nSMKFLOW is a node editor in C++ compatible with WebAssembly using [SMK][smk]\n\n**Features**:\n- Compatible with WebAssembly.\n- The permissive MIT license.\n- Use CMake FetchContent. No download is needed. You use the cmake snippet below\n  to depends on smkflow.\n  \n**Warning**. This is an active project. Please do not expect the API to be stable for the next few months.\n\nExamples/Demo:\n---------\nUse the [./examples/](./examples/) directory. This produce the following\nwebassembly [demo](http://arthursonzogni.github.io/smkflow/examples/index.html)\n\nAPI\n---\nThe API consists of 4 files:\n\n- [Model.hpp](./include/smkflow/Model.hpp) Let you define how your nodes will look like. Please try example:\n[./examples/minimal.cpp](./examples/minimal.cpp).\n\n- [Elements.hpp](./include/smkflow/Elements.hpp) Contains the public definition elements composing the view at runtime. You can use them to query/update the view. See [./examples/algebra.cpp](./examples/algebra.cpp) file.\n\n- [Constants.hpp](./include/smkflow/Constants.hpp) Contains the default sizes and\ncolors the library is using for staying consistant. Feel free to fork and modify\nthis file to make smkflow suits your needs.\n\n- [Widget/](./include/smkflow/widget). Every nodes can display some GUI inside. This directory contains the GUI public interface. You can also easily define your own components if needed.\n\nCMake\n-----\nInclude the following lines in your CMake and you are ready to go.\n~~~cmake\ninclude(FetchContent)\n\nFetchContent_Declare(smkflow\n  GIT_REPOSITORY https://github.com/ArthurSonzogni/smkflow\n  GIT_TAG master # Please choose a fixed commit hash here.\n)\n\nFetchContent_GetProperties(smkflow)\nif(NOT smkflow_POPULATED)\n  FetchContent_Populate(smkflow)\n  add_subdirectory( ${smkflow_SOURCE_DIR} ${smkflow_BINARY_DIR} EXCLUDE_FROM_ALL)\nendif()\n~~~\n\nThen link your application with smkflow:\n~~~cmake\ntarget_link_library(my_applcation PRIVATE smkflow::smkflow)\n~~~\n\nWant to contribute?\n-------------------\nFeel free to post issues, ask questions or submit any work to this repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farthursonzogni%2Fsmkflow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farthursonzogni%2Fsmkflow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farthursonzogni%2Fsmkflow/lists"}