'browser-sync' is not recognized as an internal or external command
See original GitHub issueHi community,
I’ve install Browser Sync, but when i start server, i’ve this message on my console 👍
'browser-sync' is not recognized as an internal or external command
Screen :
Any idea ? 😃
Thank you !
Issue Analytics
- State:
- Created 9 years ago
- Comments:7
Top Results From Across the Web
'browser-sync' is not recognized as an internal or external ...
When I run the external tool Browser Sync, I am getting error: 'browser-sync' is not recognized as an internal or external command, operable ......
Read more >'browser-sync' is not recognized as an internal or external ...
Right click your computer, click advanced system settings, then environment variables and add "C:\Users\userName\AppData\Roaming\npm" to your ...
Read more >Browsersync Documentation
Browsersync makes your browser testing workflow faster by synchronising URLs, interactions and code changes across multiple devices.
Read more >browser-sync - Start a server from any folder - YouTube
Target Audience: Web developersIn this tutorial, you will learn how to use browser-sync on command line to smoothen the web development and ...
Read more >How to run Browser-Sync - Medium
The above command get browser-sync installed on your machine. After that, change directory to where ... Notice each url has both internal and...
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
Did you add npm bin directory to your path (I guess you are on windows)
I had to add C:\Users\USERNAMEHERE\AppData\Roaming\npm to mine If you check using explorer you should have browser-sync.cmd in this directory
@sound-vaish2 if you already have npm added to your path, try installing browser-sync globally Run this command:
npm i -g browser-sync
The ‘g’ tag here will install the module globally.