Published a year ago
Mermaid Tutorial (flowchart)flowchart TD start(START) --> input[/Get l,b/] --> process[A = l*b] --> decision{is A < 12} decision --> |Yes| input decision --> |No| output output[/print A/] --> stop(STOP) import mermaid from 'https:/...
Published a year ago
Simple OpenAPI Starter TemplateIf you ever tried modifying the default "Pet Store" API spec that comes with editor.swagger.io you will notice it has a lot of bells and whistles you likely don't need and it takes a bit of ti...
Published a year ago
Mark An Open API Spec Endpoint As DeprecatedPlace the key-value pair anywhere within the endpoint indented block to mark it as deprecated. Here is an example ...
Published a year ago
How To Convert An OpenAPI Specification Into A NodeJS SDKThe OpenAPI Specification provides developers and technical writers with a way to document APIs. Unlike traditional text-based documentation, the formal nature of the spec allows detail...
Published a year ago
What Is An Asynchronous (Async) API?The most popular form of API is the synchronous API. This type of API typically relies on the HTTP protocol which is a unidirectional communication channel....
Published 2 years ago
The Difference Between A JWT And A Bearer TokenOnline systems usually give different levels of access to different groups of people. To get access to the system, a user has to provide special information. E.g. Username/password combo. This is information that only they possess. Once a user gains access to a system, most systems return...