puter.kv.MAX_VALUE_SIZE

Websites Puter Apps Node.js Workers

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

Syntax

puter.kv.MAX_VALUE_SIZE

Examples

Get the max value size

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