LoginSignup
3
3

More than 5 years have passed since last update.

node,expressでとりあえず静的ファイルを公開したい

Last updated at Posted at 2015-05-15

expressのバージョン更新したら動かなくなっていたので。。。
すくなくとも 4.12.x はこれで動きます。

var express = require('express');
var app = express();
var port = process.env.PORT || 5010;

app.use(express.static('public'));

app.listen(port);
console.log("surver running at localhost:" + port);
参考:

本家のページ

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3