64

Is there any way to start Flutter web, with a Headless-Server target, always on the same specified port number ?

Today, running the web application with:

flutter run -d headless-server

Provides a random port number.

Omar BELKHODJA
  • 1,622
  • 1
  • 12
  • 18

6 Answers6

75

To do this for Android Studio, just add the additional parameters to menu Run > Edit configuration. So in the Additional arguments, add --web-port=49430

Menu Edit configurations

Update arguments

coffeduong
  • 1,443
  • 1
  • 10
  • 11
Boy
  • 7,010
  • 4
  • 54
  • 68
63

The above solution works fine if you are like using command line. But if you you are using VsCode by CTRL+F5 that won't work. So to make vscode CTRL+F5 run in chrome or web-server go to your project root directory create .vscode directory and inside that folder add launch.json file.

Now if you want to run in web server add this lines in you launch.json

{
 "version": "0.2.0",
 "configurations": [{
        "name": "Flutter",
        "request": "launch",
        "type": "dart",
        "args": ["-d", "web-server","--web-port", "8000"],
    }
]}

And if you want to launch in chrome device change argument web-server to chome i.e.

{   
 "version": "0.2.0",
 "configurations": [{
        "name": "Flutter",
        "request": "launch",
        "type": "dart",
        "args": ["-d", "chrome","--web-port", "8000"],
    }
]}

Now run CTRL+F5

eli
  • 8,571
  • 4
  • 30
  • 40
60

I found the answer inside the flutter_tools source code:

flutter run -d headless-server --web-port=1234
Omar BELKHODJA
  • 1,622
  • 1
  • 12
  • 18
29

You can run flutter web on any chromium based browser

Chrome     |    Edge     

Use any one to launch flutter web application with custom port

flutter run -d chrome --web-port 5555

flutter run -d edge --web-port 5555

flutter run -d web-server --web-port 5555

EDIT

UNRELATED TO THE MAIN Question, but Helpful if you face the below-mentioned issue.

Recently faced an issue with a flutter web application, it was not running and no logs/ errors were visible.

How I fixed it.

Run flutter build web this should print out the errors, fix those errors and then try running your application by above mentioned commands

Vicky Salunkhe
  • 9,869
  • 6
  • 42
  • 59
  • Maybe its just a macOS thing? Seems like I need "web" not "web-server", it doesn't launch the same but does start: `flutter -v run -d web --web-port=28080` Still, --web-port is the trick here. :) – gregthegeek Sep 29 '20 at 20:58
6

This works well too -

flutter run -d web-server --web-port 8080
vivekyad4v
  • 13,321
  • 4
  • 55
  • 63
3

Solution for VS Code

  1. Go to settings
  2. Search for Dart: Flutter Run Additional Args
  3. Enter --web-port=1234
  4. Click Add Item

VS Code setting to set up flutter web port

aqel
  • 415
  • 1
  • 5
  • 11