I got a node.js and React.js project, separated in different directory.
Project
- BE
- FE
when start my project for local development, i have to type 3 command
- redis-server
- cd BE && npm run dev
- cd FE && npm run dev
I wonder how could i combine these command as a single command to make my life easier ?
All these command is will hang until we abort them
I can't just redis-server && cd BE && npm run dev .....