live-server icon indicating copy to clipboard operation
live-server copied to clipboard

A simple development http server with live reload capability.

Results 123 live-server issues
Sort by recently updated
recently updated
newest added

Fixes #336 In all instances where `String#indexOf` was used to determine if a substring existed, I replaced the calls with `String#includes`. Affected files: - live-server.js - test/cli.js - test/acceptance.js -...

In `live-server.js` I noticed that you're using `String#indexOf` to see if an item exists in an array as opposed to the more appropriate **`String#includes`**. I doubt there's enough of a...

I've used the parameter `--browser=chrome` and `--browser=brave` and nothing happened. How do I open browsers on with Mac terminal command?

**live-server:** 1.2.1 **nodejs:** 10.15.3 Right now, when an html file is changed, server reloads every open page (browser tab): ```js clients.forEach(function(ws) { if (ws) ws.send(cssChange ? 'refreshcss' : 'reload'); });...

![liveserver-issue background](https://user-images.githubusercontent.com/54709336/67632428-6fc43c80-f8a3-11e9-8e6a-803cbca8135f.png) as you see how the same file works differently between chrome and edge. anyone can help, please? node v12.13.0 npm v 6.12.0

Prepend process.cwd() to to supplied middleware path in order to resolve the working directory from cli execution. I'm unsure what the point of the bare `require(mw)` statement was, as I...

opn has been deprecated The package has been renamed to `open`

## Issue description If I try to use the `--middleware` option with a relative path, it fails, and it doesn't give much information. (It's hard to tell where it's searching...

Sometimes it's nice to start live-server and leave it running in the background for several websites at the same time. Currently there does not appear to be a good way...