I usually cd into the app directory and then run npm start.
cd
npm start
It is my feeling that there ought to be some way to run npm start
npm start --prefix path/to/your/app
& inside package.json add the following script
"scripts": { "preinstall":"cd $(pwd)" }