{"id":26086815,"url":"https://github.com/liqtags/bigstepper","last_synced_at":"2026-05-26T20:31:26.290Z","repository":{"id":243854935,"uuid":"813600572","full_name":"liqtags/bigstepper","owner":"liqtags","description":"Big Stepper","archived":false,"fork":false,"pushed_at":"2024-06-11T12:35:54.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-09T07:18:36.405Z","etag":null,"topics":["stepper","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/liqtags.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-06-11T11:39:05.000Z","updated_at":"2024-06-11T12:38:17.000Z","dependencies_parsed_at":"2024-06-11T15:27:39.407Z","dependency_job_id":null,"html_url":"https://github.com/liqtags/bigstepper","commit_stats":null,"previous_names":["liqtags/bigstepper"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/liqtags/bigstepper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liqtags%2Fbigstepper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liqtags%2Fbigstepper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liqtags%2Fbigstepper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liqtags%2Fbigstepper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/liqtags","download_url":"https://codeload.github.com/liqtags/bigstepper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/liqtags%2Fbigstepper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33538659,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"ssl_error","status_checked_at":"2026-05-26T15:22:15.568Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["stepper","typescript"],"created_at":"2025-03-09T07:18:27.695Z","updated_at":"2026-05-26T20:31:26.265Z","avatar_url":"https://github.com/liqtags.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Step System\n\nThis repository contains a Typescript implementation of a Step System, designed to execute a series of modules in a specified order. The system allows for defining dependencies between modules to ensure proper execution flow.\n\n## Usage\n\nTo use the Step System, follow these steps:\n\n1. **Define Steps**: Create individual modules (steps) to be executed. Each module should be a function returning a Promise.\n\n2. **Create Step Definitions**: Define each step along with its dependencies, if any, using the `StepDefinition` interface.\n\n3. **Initialize Step System**: Instantiate a `StepSystem` object with an array of step definitions.\n\n4. **Run the Step System**: Call the `run()` method of the `StepSystem` instance to execute the defined modules sequentially.\n\n## Example\n\n```javascript\nimport { step1, step2 } from \"./steps\";\n\n// Define step definitions\nconst steps = [\n    { step: step1 },\n    { step: step2, dependencies: ['data1'] } // Module 2 depends on data1 from module1\n];\n\n// Initialize StepSystem\nconst stepSystem = new StepSystem(steps);\n\n// Run the step system\nstepSystem.run().then((context) =\u003e {\n    console.log(\"All modules completed.\");\n    console.log(\"Context:\", context);\n}).catch(error =\u003e {\n    console.error(\"Error:\", error.message);\n});\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliqtags%2Fbigstepper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fliqtags%2Fbigstepper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fliqtags%2Fbigstepper/lists"}