https://github.com/ruffrey/simple-google-express-auth
Super easy and quick Google authentication for your express app.
https://github.com/ruffrey/simple-google-express-auth
Last synced: 8 days ago
JSON representation
Super easy and quick Google authentication for your express app.
- Host: GitHub
- URL: https://github.com/ruffrey/simple-google-express-auth
- Owner: ruffrey
- Created: 2014-01-01T23:15:22.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-01-01T23:15:36.000Z (over 12 years ago)
- Last Synced: 2025-01-08T18:50:12.061Z (over 1 year ago)
- Language: JavaScript
- Size: 168 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Google auth in express, super easy
## Usage
First edit `google-config.js` and `users.json` to fit your express app.
. . .
var GoogleAuth = require('simple-google-express-auth');
var AuthCheck = GoogleAuth(app);
app.all('/admin*', AuthCheck);