Registers middleware functions or Express routers within the noonjs application. Can be used to apply global middleware, mount specific routes, or integrate third-party Express-compatible handlers.
...
noonjs.use(someMiddleware); // Global middleware
noonjs.use("/api/custom", customRouter); // Mounts custom Express router
...