{"id":13596892,"url":"https://github.com/Apicurio/apicurio-studio","last_synced_at":"2025-04-09T20:31:36.256Z","repository":{"id":11412065,"uuid":"69595482","full_name":"Apicurio/apicurio-studio","owner":"Apicurio","description":"Open Source API Design","archived":false,"fork":false,"pushed_at":"2025-04-02T19:34:47.000Z","size":17369,"stargazers_count":1023,"open_issues_count":360,"forks_count":509,"subscribers_count":40,"default_branch":"main","last_synced_at":"2025-04-03T10:41:59.044Z","etag":null,"topics":["angular2","api-design","developer-tools","openapi","swagger","typescript"],"latest_commit_sha":null,"homepage":"https://www.apicur.io/studio/","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/Apicurio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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}},"created_at":"2016-09-29T18:22:33.000Z","updated_at":"2025-04-02T02:13:37.000Z","dependencies_parsed_at":"2024-01-22T20:52:53.259Z","dependency_job_id":"4b69989d-8e78-4ca8-8ed9-e8f715a7ab03","html_url":"https://github.com/Apicurio/apicurio-studio","commit_stats":{"total_commits":257,"total_committers":8,"mean_commits":32.125,"dds":"0.49027237354085607","last_synced_commit":"590432aae3c6d0f6d33d2a2c72c399774def4a66"},"previous_names":[],"tags_count":85,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apicurio%2Fapicurio-studio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apicurio%2Fapicurio-studio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apicurio%2Fapicurio-studio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Apicurio%2Fapicurio-studio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Apicurio","download_url":"https://codeload.github.com/Apicurio/apicurio-studio/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248107376,"owners_count":21048915,"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":["angular2","api-design","developer-tools","openapi","swagger","typescript"],"created_at":"2024-08-01T16:02:55.123Z","updated_at":"2025-04-09T20:31:34.282Z","avatar_url":"https://github.com/Apicurio.png","language":"TypeScript","funding_links":[],"categories":["TypeScript","API管理"],"sub_categories":["语音合成"],"readme":"![Verify Build Workflow](https://github.com/Apicurio/apicurio-studio/workflows/Build%20%26%20Verify/badge.svg)\n[![Join the chat at https://apicurio.zulipchat.com/](https://img.shields.io/badge/zulip-join_chat-brightgreen.svg)](https://apicurio.zulipchat.com/)\n\n![Apicurio Studio](.assets/apicurio_studio_logo_default.svg)\n\n# The apicurio-studio project (Open Source API Design Studio)\n\n## Summary\n\nThis is the official Git repository for the Apicurio Studio project:  http://www.apicur.io/studio\n\nThe Apicurio Studio project is an API design studio that can be used to create\nnew or edit existing API designs (using specifications like OpenAPI or AsyncAPI).\n\n## Get the code\n\nThe easiest way to get started with the code is to [create your own fork](http://help.github.com/forking/)\nof this repository, and then clone your fork:\n```bash\n  $ git clone git@github.com:\u003cyou\u003e/apicurio-studio.git\n  $ cd apicurio-studio\n  $ git remote add upstream git://github.com/apicurio/apicurio-studio.git\n```\nAt any time, you can pull changes from the upstream and merge them onto your main:\n```bash\n  $ git checkout main               # switches to the 'main' branch\n  $ git pull upstream main          # fetches all 'upstream' changes and merges 'upstream/main' onto your 'main' branch\n  $ git push origin                   # pushes all the updates to your fork, which should be in-sync with 'upstream'\n```\nThe general idea is to keep your 'main' branch in-sync with the 'upstream/main'.\n\n## Building apicurio-studio\n\n### Requirements\n- Node.js and NPM\n\n### Building\nUse standard NPM based UI tooling to build the project:\n\n```bash\ncd ui\nnpm install\nnpm run build\nnpm run package\n```\n\n## Contribute fixes and features\n\nApicurio Studio is open source, and we welcome anybody who wants to participate and contribute!\n\nIf you want to fix a bug or make any changes, please [log an issue in GitHub](https://github.com/apicurio/apicurio-studio/issues) describing the bug or new feature. Then we highly recommend making the changes on a topic branch named with the GitHub issue number. For example, this command creates a branch for an issue with number 1234:\n\n```bash\n  $ git checkout -b apicurio-studio-1234\n```\n\nAfter you're happy with your changes and a full build (with unit tests) runs successfully, commit your\nchanges on your topic branch. Then it's time to check for and pull any recent changes that were made in\nthe official repository:\n\n```bash\n  $ git checkout main               # switches to the 'main' branch\n  $ git pull upstream main          # fetches all 'upstream' changes and merges 'upstream/main' onto your 'main' branch\n  $ git checkout apicurio-studio-1234   # switches to your topic branch\n  $ git rebase main                 # reapplies your changes on top of the latest in main\n                                      # (i.e., the latest from main will be the new base for your changes)\n```\n\nIf the pull grabbed a lot of changes, you should rerun your build to make sure your changes are still good.\nYou can then either [create patches](http://progit.org/book/ch5-2.html) (one file per commit, saved in `~/apicurio-studio-1234`) with\n\n```bash\n  $ git format-patch -M -o ~/apicurio-studio-1234 orgin/main\n```\n\nand upload them to the JIRA issue, or you can push your topic branch and its changes into your public fork repository\n\n```bash\n  $ git push origin apicurio-studio-1234         # pushes your topic branch into your public fork of apicurio-studio\n```\n\nand [generate a pull-request](http://help.github.com/pull-requests/) for your changes.\n\nWe prefer pull-requests, because we can review the proposed changes, comment on them,\ndiscuss them with you, and likely merge the changes right into the official repository.\n\nPlease try to create one commit per feature or fix, generally the easiest way to do this is via [git squash](https://git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Squashing-Commits).\nThis makes reverting changes easier, and avoids needlessly polluting the repository history with checkpoint commits.\n\n## Code Formatting\n\nWhen you are hacking on some apicurio-studio code, we'd really appreciate it if you followed the\napicurio-studio coding standards.  The project uses `eslint` to ensure these standards.  You can\ncheck your code using:\n\n```bash\ncd ui\nnpm run lint\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FApicurio%2Fapicurio-studio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FApicurio%2Fapicurio-studio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FApicurio%2Fapicurio-studio/lists"}