Skip to content

Commit

Permalink
💬 Add simple description
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Jun 28, 2024
1 parent 3b41fb5 commit 6095797
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,20 @@
<textarea id="json-value" @input="jsonToCbor" v-model="jsonValue" :placeholder="jsonPlaceHolder" />
</div>
</section>
<section>
<h2>What is this tool?</h2>
<p>This tool is an online converter for CBOR (Concise Binary Object Representation) and JSON (JavaScript Object
Notation). It allows you to convert data between CBOR and JSON formats.</p>
<p>Just paste your CBOR value as hex or base64, or JSON as string above to begin.</p>
</section>
<section>
<h2>What is CBOR?</h2>
<p>CBOR (Concise Binary Object Representation) is a binary data format that aims to be smaller and more efficient
than JSON. It provides a compact binary representation of structured data, making it useful for scenarios where
size and performance are important.</p>
<p>For more information, you can visit the <a href="https://cbor.io/" target="_blank"
ref="noopener noreferrer">CBOR website</a>.</p>
</section>
</div>
</template>

Expand Down

0 comments on commit 6095797

Please sign in to comment.