expressjs
expressjs 사용
- mkdir test-web
- cd test-web
- npm init -y
- npm install -i express
- node index.js
// index.js
var express = require("express");
var app = express();
app.use(express.static("public"));
app.listen(3000, function() {
console.log("Example app listening on port 3000!");
});
Building a Node.js static file server (files over HTTP) using ES6+
'JS' 카테고리의 다른 글
Sinon.JS (0) | 2019.08.26 |
---|---|
Mocha-Sinon 개발 환경 (0) | 2019.08.20 |
[Vuejs] mocha+chai+sinon 테스트 (0) | 2019.08.13 |
[js]Backbonejs - r.js build 환경 설정 (0) | 2014.05.14 |
문장 구분하기 (0) | 2013.11.06 |