@0l00000l/auth
v1.3.0
Published
1. Update package.json 2. npm run build 2. npm publish --access public
Readme
Publish
- Update package.json
- npm run build
- npm publish --access public
routes
import aauth from '@0l00000l/auth';
router.post(
'/login',
aauth.login,
);
router.post(
'/logout',
aauth.logout,
);
router.post(
'/verify-email',
aauth.verifyEmail,
);
router.post(
'/forgot-password',
aauth.forgotPassword,
);
router.post(
'/reset-password',
aauth.resetPassword,
);authMiddleware
aauth.authMiddleware