UNPKG

harperdb

Version:

HarperDB is a distributed database, caching service, streaming broker, and application development platform focused on performance and ease of use.

30 lines (28 loc) 870 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Harper Application Template</title> <link rel="stylesheet" href="styles.css" /> </head> <body> <main> <h1>Harper Application Template</h1> <p> This is an example of serving static assets using the built-in <a href="https://docs.harperdb.io/docs/developers/components/built-in#static" >static component</a >. <br /> You can use this component to serve web applications! </p> <div> <p class="count" id="count">0</p> <button class="decrement" id="decrement">-</button> <button class="increment" id="increment">+</button> </div> </main> <script src="index.js"></script> </body> </html>