반응형
First, you set the public (folder) as static in the server.js
server.js
// configure our application
const Express = require('express');
const app = new Express();
.......
.......
app.use(Express.static(__dirname+'/public'));
.......
then your html file
<img class="logo" src="/images/Heading.png" alt="My_Logo">
your images path location-
project(root folder) \ public \ images\ Heading.png
반응형
'프로그래밍 > Script' 카테고리의 다른 글
textarea 입력대로 화면에 출력하기, textarea를 줄별로 처리하기 (0) | 2021.05.10 |
---|---|
[Javascript] 숫자 3자리 단위마다 콤마(comma) 찍기 (0) | 2021.05.10 |
nodeJS의 무중단 관리도구인 Forever (0) | 2021.04.09 |
three.js - JavaScript 3D library (0) | 2021.03.29 |
[javascript] 숫자 카운트 효과 (0) | 2021.03.10 |