Readme
A self-contained comments system Val. Just fork this val and you have a complete (but extremely minimal) comment system!
Call on the front-end using:
const MY_FORKED_VAL_URL = "https://vez-comments.web.val.run";
const getComments = async () => {
const response = await fetch(MY_FORKED_VAL_URL);
const json = await response.json();
return json;
};
const addComment = async (str) => {
try {
const response = await fetch(MY_FORKED_VAL_URL, {
method: "POST",
body: JSON.stringify(str),
});
if (response.status >= 400 && response.status < 600) {
/* error */
return false;
} else {
/* success */
return true;
}
} catch (e) {
/* error */
return false;
}
};
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
parkerdavis-comments.web.val.run
Updated: March 8, 2024
Curious to see how you use this! Thanks for forking :)