강의

멘토링

로드맵

Create your own blog with React (MERN Stack)

Let's create your own blog with a full stack~~!

(4.1) 33 reviews

502 learners

Level Intermediate

Course period Unlimited

React
React
Redux
Redux
Node.js
Node.js
Bootstrap
Bootstrap
MongoDB
MongoDB
React
React
Redux
Redux
Node.js
Node.js
Bootstrap
Bootstrap
MongoDB
MongoDB

[Notice] How to resolve nodemon, babel-node conflict

[Notice] How to resolve nodemon, babel-node conflict issues / (5) Express Start lecture related

If you are currently using Windows, please do not use nodemon and proceed with the method below.

[cause]

There is an issue where nodemon and babel-node do not work properly together on Windows (either running twice or options like ignore do not work properly).

[Solution]

(install) npm i babel-watch

(script) added

"dev-watch" : "babel-watch server/server.js --ignore'./client'" ,

(Running server)

npm run dev-watch

If you change it like this, the server will not be restarted when performing front-end work after the server is started.

Comment