프론트엔드-코드/Node.js

express

sdafdq 2023. 10. 30. 15:22
const express = require('express');
const path = require('path');
const app = express();
const img_path = path.join(__dirname, './img');
const PORT = 12010;

const main = async () =>{
  app.use('/img', express.static(img_path));
  app.listen(PORT, console.log(`start images server. http://localhost:${PORT}`));
}

main();

 

 

express.static 해서 public 만든 듯.

'프론트엔드-코드 > Node.js' 카테고리의 다른 글

node js mysql, express 같이  (0) 2023.11.14
express + mysql  (0) 2023.11.03
서버 띄우기 2 url마다 다르게 받기  (0) 2023.10.12
파일 fs  (0) 2023.10.11
프로젝트 폴더에 파일 생성 -미완  (0) 2023.10.06