목록유튜브컨텐츠탐색-StelLife/Node.js (2)
안녕하세요
https://github.com/nodejs/node/issues/37845 https://stackoverflow.com/questions/46745014/alternative-for-dirname-in-node-js-when-using-es6-modules Node.js 환경에서 ES6 문법을 사용할 때 그냥 __dirname을 가져올 수 없다. app.use(express.static(path.join(__dirname, "/frontend/build"))); ReferenceError: __dirname is not defined in ES module scope 이 에러는 ECMAScript 모듈 시스템에서 __dirname 변수를 사용할 때 발생할 수 있는 문제입니다. __dirname은 C..
REACT로 서버 구현 express 설치하기 $ npm i express cors 설치하기 $ npm install cors nodemon 설치하기 (저장할 때마다 자동으로 서버를 재실행 해서 편리해짐) $ npm i -g nodemon 그리고나서 nodemon concurrently를 설치해줍니다. (필요하다면) npm install nodemon concurrently --save-dev , "server": "nodemon server", "client": "npm start", "dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client" const express = require("express"); const p..