-
-
Save scq000/cfab8167bfb18f7c9ed0509585d5cd0c to your computer and use it in GitHub Desktop.
Express simple authentication example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var express = require('express'); | |
| var port = 8999; | |
| var app = express.createServer(); | |
| app.get('/', function (req, res, next) { | |
| res.send('Welcome'); | |
| }); | |
| app.listen(port); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
express 缓存