Cannot GET/
See original GitHub issueHey there!
linux@linux-desktop:~/Templates/browsersync-project$ ls
brow.html css
linux@linux-desktop:~/Templates/browsersync-project$ browser-sync start --server --files="css/*.css"
[BS] Access URLs:
------------------------------------
Local: http://localhost:3000
External: http://192.168.1.2:3000
------------------------------------
UI: http://localhost:3001
UI External: http://192.168.1.2:3001
------------------------------------
[BS] Serving files from: ./
[BS] Watching files...
In browser (Firefox http://localhost:3000/) I see only : Cannot GET/
any suggestions?
Issue Analytics
- State:
- Created 8 years ago
- Comments:7 (1 by maintainers)
Top Results From Across the Web
Cannot GET / Nodejs Error - Stack Overflow
After starting the server with node server.js I'm getting an error stating Cannot GET / when I access localhost:5000 and I just wondered...
Read more >How to fix the Node.js error: "Cannot GET" URL - ChemiCloud
Sometimes when using Node.js for your application(s) you may receive an error about the app being unable to “GET a URL”. You are...
Read more >Node.js application error message: "Cannot GET" URL
To resolve this problem, you must include the application URL in your routes. The following code sample demonstrates how to do this using...
Read more >Node.js Error: Cannot GET/ from running the url on the web ...
Node.js Error: Cannot GET/ from running the url on the web browser · Step 1: Initializes NPM: · Step 2: Install Dependencies: ·...
Read more >"Cannot GET /" with Connect on Node.js - YouTube
In this video , It explains how to fix Cannot GET / error appears in the browser window , when using browsersync to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@dagolinuxoid it looks for an
index.html
file in the directory you specify (or the cwd, if you didn’t)solutions:
index
option like soThanks guys