Issue: The NPM start script uses the open command which is specific to MacOS.
Rather than use a platform-specific command to launch the browser, the http-server package can do this instead in a way that works for all platforms. This would allow all users to run npm start in the terminal to launch the app.
Issue: The NPM start script uses the
open
command which is specific to MacOS.Rather than use a platform-specific command to launch the browser, the http-server package can do this instead in a way that works for all platforms. This would allow all users to run
npm start
in the terminal to launch the app.