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

# Workaround for 404s causing stuckness With the static site generator I'm using, other paths get changed before the html of the page I'm viewing. This would cause the page...

###### Before submitting an issue, please, see https://github.com/tapio/live-server#troubleshooting ## Issue description Currently I operate on WSL (Windows Subsystem for Linux), with ubuntu. During some project setup stuff, I opted to...

I used this in .htacess file to hide the ".html" in the URL to improve UX: RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^\.]+)$ $1.html [NC,L] Now I cannot use live...

enhancement

**live-server:** 1.2.1 **nodejs:** 10.15.3 WebSocket connection can timeout and be closed due to inactivity, in my case (Cloud9) after 30 seconds. More here: https://stackoverflow.com/questions/9056159/websocket-closing-connection-automatically and https://community.c9.io/t/websocket-support/14044 Due to this, live-reload...

## Chrome does not update CSS edit ### The changes in .html are registered and updated. But i am having problems with .css file. The changes in .css file are...

This change provides an example of how to use live-server to serve a custom path, and adds a reference to this parameter under the parameters section. It was previously unclear...

I'm using `live-server` to serve static files and then have it proxying an API also, that API has a web socket endpoint, but it's unreachable at the moment as any...

## Issue description live-server always opens a new browser window in regular Firefox, which is my default browser, but I want it to open in Firefox Developer Edition. How do...

To better understand how live-server cli works

The https configuration requires a synchronous export from a module. But in some cases it would be useful to export a promise: ### Using `fs` asynchronous functions With `fs` callback...