https://github.com/aep-dev/aep-explorer
https://github.com/aep-dev/aep-explorer
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/aep-dev/aep-explorer
- Owner: aep-dev
- License: apache-2.0
- Created: 2024-11-15T20:14:33.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-12-03T02:31:17.000Z (6 months ago)
- Last Synced: 2025-12-06T03:28:12.159Z (6 months ago)
- Language: TypeScript
- Size: 609 KB
- Stars: 0
- Watchers: 6
- Forks: 2
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AEP Explorer
AEP Explorer is a web interface for exploring and interacting with [AEP-compliant](https://aep.dev) APIs.
AEP Explorer:
- Provides a way to view the resources exposed by an API described by an OpenAPI document.
- Enables exploration of the objects stored within a collection, including filtering.
## Differences from Swagger UI
[Swagger UI](https://swagger.io/tools/swagger-ui/) is designed for creating API calls
by allowing users to create request messages and view their responses.
AEP Explorer is resource-oriented. The UI does not assume that users have any familiarity
with the underlying APIs, what the requests/responses look like, or even what APIs need
to be called. Instead, it focuses on allowing users to interact with resources and
makes the proper AEP-compliant API calls under-the-hood.
## Live Demo
AEP Explorer is available at [ui.aep.dev](https://ui.aep.dev).
## User Guide
The [online demo](https://ui.aep.dev) is the easiest way to try the project.
Simply use the form to enter the URL of an AEP-compliant.
### Running Locally
For advanced users, the project can be deployed locally depending on
[CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/CORS) settings.
```bash
npm install
npm run dev
```