{"id":28452907,"url":"https://github.com/marketsquare/robotlog","last_synced_at":"2025-08-28T19:14:02.906Z","repository":{"id":66050302,"uuid":"579469467","full_name":"MarketSquare/robotlog","owner":"MarketSquare","description":"Robot Framework Log structure in TypeScript","archived":false,"fork":false,"pushed_at":"2022-12-29T21:35:59.000Z","size":778,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-06-27T23:35:23.071Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MarketSquare.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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-12-17T19:56:02.000Z","updated_at":"2022-12-18T13:13:41.000Z","dependencies_parsed_at":"2023-02-25T16:31:12.220Z","dependency_job_id":null,"html_url":"https://github.com/MarketSquare/robotlog","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MarketSquare/robotlog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarketSquare%2Frobotlog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarketSquare%2Frobotlog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarketSquare%2Frobotlog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarketSquare%2Frobotlog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MarketSquare","download_url":"https://codeload.github.com/MarketSquare/robotlog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MarketSquare%2Frobotlog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272541944,"owners_count":24952468,"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","status":"online","status_checked_at":"2025-08-28T02:00:10.768Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":"2025-06-06T18:13:08.766Z","updated_at":"2025-08-28T19:14:02.881Z","avatar_url":"https://github.com/MarketSquare.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Robotlog\n\nRobot Framework Log structure in TypeScript\n\nStatus: Prototype\n\n# Goal\n\nThis projects goal is to make a TypeScript package that can reveal Robot Framework log data given in JSON format to JavaScript / TypeScript.\nThis should allow anybody to make their own representation of the log data with their selected web technologies.\n\nThis should allow building the UI with React, Angular, Vue, Svelte, vanilla JS or whatever tech suites your needs.\n\nThis should interface with official JSON https://github.com/robotframework/robotframework/issues/3423 once it is available, for now using create_json.py as a placeholder.\n\n# Example output\n\n```JSON\n{\n  \"id\": \"s1\",\n  \"name\": \"Tmp\",\n  \"source\": \"/Users/mkorpela/workspace/robotlog/tmp\",\n  \"relativeSource\": \"tmp\",\n  \"doc\": \"\",\n  \"status\": \"PASS\",\n  \"message\": \"\",\n  \"times\": {\n    \"startTime\": \"2022-12-17T19:05:34.044Z\",\n    \"endTime\": \"2022-12-17T19:05:34.056Z\",\n    \"elapsedMillis\": 12\n  },\n  \"statistics\": {\n    \"total\": 1,\n    \"pass\": 1,\n    \"fail\": 0,\n    \"skip\": 0\n  },\n  \"metadata\": [],\n  \"keywords\": [],\n  \"tests\": [],\n  \"suites\": [\n    {\n      \"id\": \"s1\",\n      \"name\": \"Foo\",\n      \"source\": \"/Users/mkorpela/workspace/robotlog/tmp/foo.robot\",\n      \"relativeSource\": \"tmp/foo.robot\",\n      \"doc\": \"\",\n      \"status\": \"PASS\",\n      \"message\": \"\",\n      \"times\": {\n        \"startTime\": \"2022-12-17T19:05:34.054Z\",\n        \"endTime\": \"2022-12-17T19:05:34.056Z\",\n        \"elapsedMillis\": 2\n      },\n      \"statistics\": {\n        \"total\": 1,\n        \"pass\": 1,\n        \"fail\": 0,\n        \"skip\": 0\n      },\n      \"metadata\": [],\n      \"keywords\": [],\n      \"tests\": [\n        {\n          \"id\": \"t1\",\n          \"name\": \"Testing\",\n          \"doc\": \"\",\n          \"timeout\": \"\",\n          \"status\": \"PASS\",\n          \"message\": \"\",\n          \"times\": {\n            \"startTime\": \"2022-12-17T19:05:34.055Z\",\n            \"endTime\": \"2022-12-17T19:05:34.056Z\",\n            \"elapsedMillis\": 1\n          },\n          \"tags\": [],\n          \"keywords\": [\n            {\n              \"type\": \"KEYWORD\",\n              \"id\": \"k1\",\n              \"name\": \"Log\",\n              \"libname\": \"BuiltIn\",\n              \"timeout\": \"\",\n              \"args\": \"hello\",\n              \"assign\": \"\",\n              \"tags\": \"\",\n              \"doc\": \"\u003cp\u003eLogs the given message with the given level.\u003c/p\u003e\",\n              \"status\": \"PASS\",\n              \"times\": {\n                \"startTime\": \"2022-12-17T19:05:34.056Z\",\n                \"endTime\": \"2022-12-17T19:05:34.056Z\",\n                \"elapsedMillis\": 0\n              },\n              \"keywords\": []\n            }\n          ]\n        }\n      ],\n      \"suites\": []\n    }\n  ]\n}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarketsquare%2Frobotlog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarketsquare%2Frobotlog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarketsquare%2Frobotlog/lists"}