{"id":28506779,"url":"https://github.com/temporalio/temporal-jumpstart-typescript","last_synced_at":"2026-02-19T17:01:07.520Z","repository":{"id":268194761,"uuid":"880957080","full_name":"temporalio/temporal-jumpstart-typescript","owner":"temporalio","description":"Temporal Jumpstart for TypeScript SDK","archived":false,"fork":false,"pushed_at":"2025-07-22T11:00:43.000Z","size":1811,"stargazers_count":3,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-02T05:00:07.605Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/temporalio.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-10-30T16:58:18.000Z","updated_at":"2025-06-08T19:41:43.000Z","dependencies_parsed_at":"2024-12-15T04:25:15.424Z","dependency_job_id":"9b972fbc-e50e-49a5-9d4b-983bac05ed17","html_url":"https://github.com/temporalio/temporal-jumpstart-typescript","commit_stats":null,"previous_names":["temporalio/temporal-jumpstart-typescript"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/temporalio/temporal-jumpstart-typescript","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temporalio%2Ftemporal-jumpstart-typescript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temporalio%2Ftemporal-jumpstart-typescript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temporalio%2Ftemporal-jumpstart-typescript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temporalio%2Ftemporal-jumpstart-typescript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/temporalio","download_url":"https://codeload.github.com/temporalio/temporal-jumpstart-typescript/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/temporalio%2Ftemporal-jumpstart-typescript/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29623546,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T13:04:20.082Z","status":"ssl_error","status_checked_at":"2026-02-19T13:03:33.775Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2025-06-08T20:06:22.839Z","updated_at":"2026-02-19T17:01:07.471Z","avatar_url":"https://github.com/temporalio.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Temporal Jumpstart : TypeScript SDK\n\n### System Requirements\n\n* NodeJS\n* NPM\n* [npx](https://docs.npmjs.com/cli/v10/commands/npx)\n\n### Applications\n\n* `/app` is a playground scaffold for getting us started. This is where we will drive out our Application together.\n* `/onboardings` is the implementation that serves the [Onboard Entity Curriculum](/onboardings/README.md).\n\n#### Packages\n\nBoth the `app` scaffold and the `onboardings` application follow this package structure:\n\n#### [_scaffold](app/src/domain/workflows/_scaffold) \nThese directories are scaffolds of the boilerplate used in specs and related components that can \nbe copied over and renamed to get going quickly.\n\n##### [api](app/src/api) \nThis is where [Starter](/docs/foundations/Starters.md) related concerns are found. \nIt is implemented here as a simple [REST api](https://martinfowler.com/articles/richardsonMaturityModel.html).\n\nThis is where you will find usage of **StartWorkflow, Query, Signal, Update, etc** .\n\nThe `api` here is a self-contained server here since the Application we are building is developed\nin the [domain](#domain) separately.\n\n##### [clients](app/src/clients)\n\nThere should typically be one Temporal SDK Client type initialized for a process. This is typical\nfor other clients like REST clients or other SDKs so this directory is where the factories for these\nfacilities live.\n\nNote that the [DataConverter](docs/foundations/DataConverter.md) implementations are co-located in the\nTemporal client directory as well.\n\n##### [domain](app/src/domain)\n\nBusiness rules should be encapsulated and enforced, at least conceptually, in a **Domain**.\nThis directory is where the heart of our Application resides.\n\n##### [domain/messages](app/src/domain/messages)\nThe **messages** package represents the contracts for interacting with our **Domain**.\nTemporal is a messaging system so it makes sense to have an explicit taxonomy of message types and intents\nto understand the capabilities of the Application.\n\nThese messages are explicitly defined as:\n* **commands** : Requests that mutate Application state, ie writes, excluding **workflow** requests\n  * These might have an accompanying **Response**, but should be avoided.\n* **queries**: Reads in our Application from any source, including Workflow Executions.\n* **workflows**: Requests that execute a Temporal Workflow.\n* **values**: Complex objects that form primitive values used across Reads and Writes. \n  * Derived from [ValueObject](https://martinfowler.com/bliki/ValueObject.html)\n\n##### [domain/workflows](app/src/domain/workflows)\nThe **workflows** package holds the orchestration implementations, \nadapter implementations (aka [Activities](docs/foundations/Activities.md)) and any representations\nthat are used to interact with our Workflows.\nConcerns unrelated to orchestration, or adaptation to interact with them, should be separated into\ntheir own package.\n\n##### [workers](app/src/workers)\nThis package represents the services exposed by this Application.\nThe hosting concerns and registration of exposed behaviors should be placed here. \nEncapsulating this allows us to make code-sharing easier across teams.\n\n##### [scripts](app/src/scripts)\nThese are scripts that meet operational requirements to run our Application.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftemporalio%2Ftemporal-jumpstart-typescript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftemporalio%2Ftemporal-jumpstart-typescript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftemporalio%2Ftemporal-jumpstart-typescript/lists"}