verser
v1.1.4
Published
Opinionated lightweight nodejs server.
Downloads
5
Readme
Verser
Opinionated lightweight nodejs server.
Usage
You will need to create a routes directory to store your pug.js files.
const { Verser } = require("verser");
const { join } = require("path");
const app = new Verser();
// You can call the routes folder anything
app.listen({ port: 3000, dir: join(__dirname, "routes") });