@arkstack/driver-h3
v0.14.2
Published
H3 driver for Arkstack, providing H3-based runtime integration for the framework.
Maintainers
Readme
@arkstack/driver-h3
H3 driver for Arkstack, providing H3-based runtime integration for the framework.
Auth Middleware
import { H3 } from 'h3';
import { auth } from '@arkstack/driver-h3/middlewares';
const app = new H3();
app.use(auth);
app.use('/account', ({ req }) => {
return {
user: req.authUser,
};
});The middleware expects Authorization: Bearer <token> and attaches user, authUser, and authToken to event.context and event.req.
