Generates you an basic express app with JWT Authentication
npm i shortping-express-generator -g
shortping-express-generator <folder>
const Auth = require("../_security/Auth")
// Add Middlewares to Express Function
app.get("/example", Auth, Auth.checkJWT, (req, res) => {
// The order of the Middlewares are important
})