0

i have an electron node application which i can open multiple instances in windows but not in MAC OS , how can i achieve the same functionality in mac also ?

1 Answers1

2

Unlike Windows, MacOS normally opens only one instance of an app, regardless of the number of documents or windows currently running within it.

It is possible to launch additional instances using open -n /path/to/myApp.app

benwiggy
  • 35,635
  • not like that, actually i want to run my application from visual studio only, the build is not there for the application, in local i want to test my code – satishVudata Jan 30 '24 at 12:08
  • 1
    @satishVudata Then please add that information to your question, along with any other relevant details of exactly what you want. – benwiggy Jan 30 '24 at 14:32