EDDYMENS

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:/...

Simple OpenAPI Starter Template

If 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...

Mark An Open API Spec Endpoint As Deprecated

Place the key-value pair anywhere within the endpoint indented block to mark it as deprecated. Here is an example ...

How To Convert An OpenAPI Specification Into A NodeJS SDK

The 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...

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....

The Difference Between A JWT And A Bearer Token

Online 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...