Here's my code:
const Database = require("@replit/database");
const db = new Database();
db.set("test", "wow").then(() => {});
console.log(db.list().then(keys => {}));
I have the database package installed, and it says that there is one key in the Database section of my repl, but it's not console logging the list of the keys, and I'm not getting an error. Only this is in the console:
Promise { <pending> }
Hint: hit control+c anytime to enter REPL.