expressjs

expressjs 사용

  1. mkdir test-web
  2. cd test-web
  3. npm init -y
  4. npm install -i express
  5. 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

+ Recent posts