1

Refer to https://github.com/openfin/process-manager

Based on the README.md, I have done the following steps:

  1. npm install
  2. node server

I am able to see the following message from terminal(windows 7)

$ node server
Express server listening on port 5040

How do I launch the application? I have tried to point to the localhost:5040 through chrome browser and ONLY see three tabs 'Processes', 'Cache', 'Logs' without any information.

How can I fix the issues?

Lightness Races in Orbit
  • 378,754
  • 76
  • 643
  • 1,055
q0987
  • 34,938
  • 69
  • 242
  • 387

1 Answers1

0
npm i -g openfin-cli
openfin -l -c http://localhost:5040/app_local.json

The server script is running a local express server that hosts an OpenFin enriched web app so all you need to do it launch it on OpenFin, which in the case above we are doing with the CLI.

You can also use a node module to launch i.e. here

dcchuck
  • 320
  • 3
  • 8