2

I have a ReactJS application with dependencies managed by npm. I use eclipse as an IDE. My application runs using "npm start" command. To execute "npm start" command, I need to open terminal window and run it there. I would like to run this command from within eclipse. Is there a way to do it?

Bipul
  • 1,564
  • 1
  • 15
  • 16

2 Answers2

2

Probably way too late to answer this but you can use ctrl + alt + shift + t to open up any command line tools installed.

local terminal on selection

Tan Kim Loong
  • 980
  • 7
  • 14
1

Install Nodeclipse. Right click 'package.json' -> Run As 'npm ...' -> Write the goal 'start' and run it

yakup_y
  • 155
  • 2
  • 7