top 10 boilerplate ever

This commit is contained in:
biglyderv 2024-09-07 18:12:58 -04:00
commit d0cc234857
No known key found for this signature in database
GPG key ID: 33AC87E9ACE66954
17 changed files with 567 additions and 0 deletions

9
client/main.js Normal file
View file

@ -0,0 +1,9 @@
import Route from "../route.js";
import Auth from "../form/auth.js";
import Format from "../common/format.js";
let main = new Route([Auth], async function (req, res, input) {
return `Hello world! Your name is: ${Format.escape(input.username)}`
});
export default main;