{"id":23020690,"url":"https://github.com/resilientapp/resview","last_synced_at":"2025-08-14T09:32:23.729Z","repository":{"id":207077064,"uuid":"717599666","full_name":"ResilientApp/ResView","owner":"ResilientApp","description":"Visualizer for the ResilientDB Blockchain fabric ","archived":false,"fork":false,"pushed_at":"2024-09-17T00:11:57.000Z","size":8227,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-09-17T21:36:15.876Z","etag":null,"topics":["blockchain","resilientdb","visualization"],"latest_commit_sha":null,"homepage":"https://resview.resilientdb.com/","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/ResilientApp.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":"2023-11-12T00:38:04.000Z","updated_at":"2024-09-17T00:11:59.000Z","dependencies_parsed_at":"2024-05-29T07:32:29.071Z","dependency_job_id":"7a956773-acfd-4ff7-9dfc-b435b119da59","html_url":"https://github.com/ResilientApp/ResView","commit_stats":null,"previous_names":["aunshx/dds_265_prj","resilientapp/resview"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ResilientApp%2FResView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ResilientApp%2FResView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ResilientApp%2FResView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ResilientApp%2FResView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ResilientApp","download_url":"https://codeload.github.com/ResilientApp/ResView/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229815944,"owners_count":18128512,"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":["blockchain","resilientdb","visualization"],"created_at":"2024-12-15T12:14:53.326Z","updated_at":"2024-12-15T12:14:53.784Z","avatar_url":"https://github.com/ResilientApp.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1\u003e\n  \u003cimg src=\"https://i.postimg.cc/jd6PkhDs/Res-View-Logo-Dark.png\" alt=\"Logo\" width=\"50\" height=\"50\" style=\"vertical-align: middle; margin-right: 10px;\"\u003e\n  \u003cspan style=\"vertical-align: middle;\"\u003eResView: The ResilientDB Visualizer\u003c/span\u003e\n\u003c/h1\u003e\n\nResView is a visualizer based on the ResilientDb fabric to show transaction visualizations.\n\n#### Check out the [blog](https://aunsh.medium.com/resview-a-pbft-visualizer-based-on-the-resilientdb-blockchain-fabric-3ffaeb2aaee5) to know more\n\n\n## Table of Contents\n\n- [Get Prepared](#get-prepared)\n- [Installation and Usage](#installation)\n- [Contributing](#contributing)\n- [Authors and Contact](#authors-and-contact)\n- [License](#license)\n\n## Get Prepared\n\nBefore running the ResView application, there are a few other services which need to be ran.\n\nGit clone the ResilientDB backend repository and follow the instructions to set it up:\n\n```bash\ngit clone https://github.com/apache/incubator-resilientdb\n```\n\nTo enable different ResView api endpoints and view change service locally, go to service/tools/config/server/server.config in the ResilientDB repository and set:\n\n```bash\nenable_resview:true\nenable_faulty_switch:true\nenable_viewchange:true\n```\n\nSetup KV Service to run the backend:\n\n```bash\n./service/tools/kv/server_tools/start_kv_service.sh\n```\n\nGit clone the GraphQL Repository and follow the instructions on the ReadMe to set it up:\n\nInstall GraphQL:\n\n```bash\ngit clone https://github.com/ResilientApp/ResilientDB-GraphQL\n```\n\nSetup SDK:\n\n```bash\nbazel build service/http_server:crow_service_main\n\nbazel-bin/service/http_server/crow_service_main service/tools/config/interface/service.config service/http_server/server_config.config\n```\n\nWith these 2 services running, the ResView front end can now send transactions to the ResilientDB framework.\n\n## Installation\n\nClone this repository and open in a new folder.\n\n```bash\ngit clone https://github.com/ResilientApp/ResView\n```\n\nCreate a .env file in the root directory with the following contents.\n\n```bash\nREACT_APP_SEND_POST_URL = \"http://127.0.0.1:18000/v1/transactions/commit\"\nREACT_APP_SEND_GET_URL = \"http://127.0.0.1:18000/v1/transactions/\"\nREACT_APP_DEFAULT_LOCAL = \"http://localhost:\"\nREACT_APP_DEFAULT_LOCAL_PORT = 18501\nREACT_APP_SOCKET_URL_EP = \"/consensus_data\"\nREACT_APP_REPLICA_STATUS_EP = \"/get_status\"\n```\n\nRun the below command to install all required packages\n\n```bash\nnpm install --force\n```\n\nRun the below code to start the app and load the script.\n\n```bash\nnpm run start\n```\n\nSend transactions to backend using Set and Get fields, display a transaction's consensus data in the graphs, choose which transaction to view using choose transaction field.\n\n## Contributing\n\nPull requests are welcome.\n\nPlease update your changes to a branch and drop a PR.\n\n## Authors and Contact\n\n[aunshx](https://github.com/aunshx/)\n\n[saipranav](https://github.com/Saipranav-Kotamreddy/)\n\n## License\n\n[Attribution-NonCommercial 4.0 International](https://creativecommons.org/licenses/by-nc/4.0/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fresilientapp%2Fresview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fresilientapp%2Fresview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fresilientapp%2Fresview/lists"}