Search code examples
javascriptremote-debugginglivereload

Custom Port on VorlonJS


I try to use VorlonJS to debug on remote devices. However it uses the Port 1337 which I am using for LiveReload to my Grunt Tasks. I can configure it Grunt Side but in the Vorlon Side Is there any options? I couldn't see it on Docs


Solution

  • For now there is no options as vorlon --port=1234 But, We can with;

    unix shell:
    $ PORT=1234

    More permanently:
    $ export PORT=1234

    In Windows:
    set PORT=1234

    In Windows PowerShell:
    $ env:PORT=1234