Skip to content

Instantly share code, notes, and snippets.

@scq000
Forked from smebberson/.gitignore
Created May 18, 2017 06:26
Show Gist options
  • Select an option

  • Save scq000/cfab8167bfb18f7c9ed0509585d5cd0c to your computer and use it in GitHub Desktop.

Select an option

Save scq000/cfab8167bfb18f7c9ed0509585d5cd0c to your computer and use it in GitHub Desktop.
Express simple authentication example
var express = require('express');
var port = 8999;
var app = express.createServer();
app.get('/', function (req, res, next) {
res.send('Welcome');
});
app.listen(port);
@scq000
Copy link
Author

scq000 commented May 18, 2017

express 缓存

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment