{"id":44356072,"url":"https://github.com/vertigis/vertigis-workflow-sdk","last_synced_at":"2026-02-11T16:08:44.773Z","repository":{"id":38707272,"uuid":"302723453","full_name":"vertigis/vertigis-workflow-sdk","owner":"vertigis","description":"The SDK for VertiGIS Studio Workflow","archived":false,"fork":false,"pushed_at":"2026-01-20T20:07:31.000Z","size":249,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":5,"default_branch":"main","last_synced_at":"2026-01-21T02:35:55.779Z","etag":null,"topics":["arcgis","geocortex","vertigis","workflow"],"latest_commit_sha":null,"homepage":"https://developers.vertigisstudio.com/docs/workflow/sdk-web-overview","language":"JavaScript","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/vertigis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-10-09T18:30:20.000Z","updated_at":"2026-01-20T18:56:00.000Z","dependencies_parsed_at":"2024-10-24T19:07:20.952Z","dependency_job_id":"b6e52527-37bc-4c19-8a0d-fc0d8ca73b8b","html_url":"https://github.com/vertigis/vertigis-workflow-sdk","commit_stats":{"total_commits":51,"total_committers":5,"mean_commits":10.2,"dds":"0.43137254901960786","last_synced_commit":"6a208f3f378862fb20518266dc87595bb4b0ecd4"},"previous_names":["geocortex/vertigis-workflow-sdk"],"tags_count":32,"template":false,"template_full_name":null,"purl":"pkg:github/vertigis/vertigis-workflow-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vertigis%2Fvertigis-workflow-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vertigis%2Fvertigis-workflow-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vertigis%2Fvertigis-workflow-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vertigis%2Fvertigis-workflow-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vertigis","download_url":"https://codeload.github.com/vertigis/vertigis-workflow-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vertigis%2Fvertigis-workflow-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29337201,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T16:00:30.228Z","status":"ssl_error","status_checked_at":"2026-02-11T16:00:25.398Z","response_time":97,"last_error":"SSL_read: 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":["arcgis","geocortex","vertigis","workflow"],"created_at":"2026-02-11T16:08:44.164Z","updated_at":"2026-02-11T16:08:44.766Z","avatar_url":"https://github.com/vertigis.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# VertiGIS Studio Workflow SDK\n\n![CI/CD](https://github.com/vertigis/vertigis-workflow-sdk/workflows/CI/CD/badge.svg)\n[![npm](https://img.shields.io/npm/v/@vertigis/workflow-sdk)](https://www.npmjs.com/package/@vertigis/workflow-sdk)\n\nThis SDK makes it easy to create custom activity packs for [VertiGIS Studio Workflow](https://www.vertigisstudio.com/products/vertigis-studio-workflow/).\n\n## Requirements\n\n- The latest LTS version of [Node.js](https://nodejs.org/en/download/)\n- A code editor of your choice. We recommend [Visual Studio Code](https://code.visualstudio.com/)\n- A viewer using VertiGIS Studio Workflow 5.31 or later ([VertiGIS Product Installer Downloads](https://apps.vertigisstudio.com/downloads))\n    - VertiGIS Studio Web 5.22 or later\n    - Workflow 5.31 widget for ArcGIS Experience Builder or later\n\n## Creating a new project\n\nTo create a project called _activity-pack_ run this command:\n\n```sh\nnpx @vertigis/workflow-sdk@latest create activity-pack\n```\n\nThis will bootstrap a new project in the specified directory to quickly get you up and running with the VertiGIS Studio Workflow SDK. Before you can use your activity pack in the [VertiGIS Studio Workflow Designer](https://apps.vertigisstudio.com/workflow/designer/), you will need to [register the activity pack](https://developers.vertigisstudio.com/docs/workflow/sdk-web-overview#register-the-activity-pack).\n\n## Available Scripts\n\nInside the newly created project, you can run some built-in commands:\n\n### `npm run generate`\n\nInteractively generate a new activity or form element.\n\n### `npm start`\n\nRuns the project in development mode. By default, Your activity pack will be available at [https://localhost:5000/main.js](https://localhost:5000/main.js). The HTTPS certificate of the development server is a self-signed certificate that web browsers will warn about. To work around this open in a web browser and allow the invalid certificate as an exception. For creating a locally-trusted HTTPS certificate see the [Configuring a HTTPS Certificate](https://developers.vertigisstudio.com/docs/workflow/sdk-web-overview/#configuring-a-https-certificate) section on the [VertiGIS Studio Developer Center](https://developers.vertigisstudio.com/docs/workflow/overview/).\n\n#### Command Line Arguments\n\nThe `start` script supports the following optional arguments that are passed along to [webpack-dev-server](https://github.com/webpack/webpack-dev-server/tree/main?tab=readme-ov-file).\n\n- `--allowed-hosts` - Default is `all`. [[docs](https://github.com/webpack/webpack-dev-server/blob/main/DOCUMENTATION-v4.md#devserverallowedhosts)]\n- `--host` - Default is `localhost`. [[docs](https://github.com/webpack/webpack-dev-server/blob/main/DOCUMENTATION-v4.md#devserverhost)]\n- `--port` - Default is `5000`. [[docs](https://github.com/webpack/webpack-dev-server/blob/main/DOCUMENTATION-v4.md#devserverport)]\n- `--type` - Server type. Default is `https`. [[docs](https://github.com/webpack/webpack-dev-server/blob/main/DOCUMENTATION-v4.md#devserverserver)]\n- `--key` - Provide a private key in PEM format. [[docs](https://developers.vertigisstudio.com/docs/workflow/sdk-web-overview/#configuring-a-https-certificate)]\n- `--cert` - Provide a certificate chain in PEM format. [[docs](https://developers.vertigisstudio.com/docs/workflow/sdk-web-overview/#configuring-a-https-certificate)]\n- `--ca` - Override the trusted CA certificates. [[docs](https://developers.vertigisstudio.com/docs/workflow/sdk-web-overview/#configuring-a-https-certificate)]\n\nNOTE: It is important to add `--` before the list of parameters.\n\nExample:\n\n```sh\nnpm start -- --host 0.0.0.0 --allowed-hosts auto\n```\n\n### `npm run build`\n\nBuilds the activity pack for production to the `build` folder. It optimizes the build for the best performance.\n\nYour custom activity pack is now ready to be deployed!\n\nSee the [section about deployment](https://developers.vertigisstudio.com/docs/workflow/sdk-web-overview/#deployment) in the [VertiGIS Studio Developer Center](https://developers.vertigisstudio.com/docs/workflow/overview/) for more information.\n\n## Upgrading\n\nTo update a previously created project to the latest version of the Workflow SDK, navigate to the root directory of that project and run\n\n```sh\nnpx @vertigis/workflow-sdk@latest upgrade\n```\n\n## Documentation\n\nFind [further documentation on the SDK](https://developers.vertigisstudio.com/docs/workflow/sdk-web-overview/) on the [VertiGIS Studio Developer Center](https://developers.vertigisstudio.com/docs/workflow/overview/).\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for contributing guidelines.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvertigis%2Fvertigis-workflow-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvertigis%2Fvertigis-workflow-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvertigis%2Fvertigis-workflow-sdk/lists"}