puter.kv.MAX_KEY_SIZE

Websites Puter Apps Node.js Workers

A property of the puter.kv object that returns the maximum key size (in bytes) for the key-value store.

Syntax

puter.kv.MAX_KEY_SIZE

Examples

Get the max key size

<html>
  <body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
      puter.print("Max Key Size: " + puter.kv.MAX_KEY_SIZE);
    </script>
  </body>
</html>