Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asyncapi/studio
Visually design your AsyncAPI files and event-driven architecture.
https://github.com/asyncapi/studio
asyncapi hacktoberfest react
Last synced: about 2 months ago
JSON representation
Visually design your AsyncAPI files and event-driven architecture.
- Host: GitHub
- URL: https://github.com/asyncapi/studio
- Owner: asyncapi
- License: apache-2.0
- Created: 2020-02-29T20:29:50.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-14T08:28:14.000Z (3 months ago)
- Last Synced: 2024-10-29T22:38:04.661Z (2 months ago)
- Topics: asyncapi, hacktoberfest, react
- Language: TypeScript
- Homepage: https://studio.asyncapi.com
- Size: 30 MB
- Stars: 172
- Watchers: 12
- Forks: 99
- Open Issues: 49
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Studio
This is a monorepo containing Studio source code, design system, and all their dependencies.
### Installing
Clone this repo and run:
```
pnpm install
```> **Note:** PNPM v8+ and Node.js v18.17+ is required.
## Development
#### Run Studio locally
```
pnpm run studio
```#### Run the Design System locally
```
pnpm run ds
```#### Run Studio and the Design System locally at the same time
```
pnpm run dev
```#### Build Studio for production
```
pnpm run build:studio
```#### Build the Design System for production
```
pnpm run build:ds
```#### Build Studio and the Design System for production
```
pnpm run build
```## Architecture decision records
### Create a new architecture decision record
- Copy `doc/adr/0000-template.md` to a new file (e.g `doc/adr/0001-record-architecture-decisions.md`)
- Open a new PR and discuss the decision with the community
- The PR must have `kind/adr` label
- The PR Title must starts with `chore: [ADR-nnnn] name of ADR` where `nnnn` is the adr number (e.g `chore: [ADR-0001] use architecture decision records`) same us commits.### List existing architecture decision records
See [docs/adr](docs/adr)