Skip to content

Instantly share code, notes, and snippets.

@memememomo
Created July 15, 2014 16:20
Show Gist options
  • Save memememomo/d0b81dbc0dd684a8d5ba to your computer and use it in GitHub Desktop.
Save memememomo/d0b81dbc0dd684a8d5ba to your computer and use it in GitHub Desktop.
Connectを使った静的ファイル配信サーバが動かなくなった ref: http://qiita.com/uchiko/items/0c052c72d8ff402c3cea
has no method 'static'
$ npm install serve-static
var connect = require('connect'),
serveStatic = require('serve-static');
var app = connect();
app.use(serveStatic(__dirname));
app.listen(5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment