Demystify offers a comprehensive suite of tools to facilitate the generation of OpenAPI specifications in real time. By capturing live network traffic or HAR files, it enables automatic and accurate documentation of API behaviors, making it easier to understand and utilize APIs effectively.
Demystify is an innovative suite of tools designed to simplify the process of generating OpenAPI specifications in real time from live network traffic or HTTP Archive (HAR) files. This powerful toolset allows developers to accurately map out API behaviors without needing manual input, making it a time-saving asset for any API-related development.
The desktop app captures network traffic and analyzes HTTP requests to automatically generate OpenAPI specifications. The browser extension operates directly within browser DevTools, allowing for real-time updates of specifications as API calls are made.
npx demystify --input <somefile.har>
This command will generate OpenAPI specifications for the provided HAR file.
import { Representor } from "demystify-lib";
const representor = new Representor();
representor.upsert(/* harEntry */);
const doc = representor.rest.generate();
For more information, visit the Demystify GitHub page or explore the demo.
With Demystify, simplifying API design and enhancing development productivity is now more accessible than ever.
No comments yet.
Sign in to be the first to comment.