Socket
Socket
Sign inDemoInstall

dweb

Package Overview
Dependencies
51
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    dweb

A debugging web server that auto-reloads pages on local modifications.


Version published
Maintainers
1
Created

Readme

Source

dweb

Develop web pages quickly with instant browser refresh.

dweb is a simple node.js webserver for Linux that watches a local directory for file modifications, and then automatically reloads any pages loaded in a browser window. It does this by listening for inotify events on Linux and passing them to any pages that have been served via a socket.io channel. It does all this transparently by modifying HTML files on-the-fly to inject a little bit of Javascript that sets up the socket.io connection to listen for piped inotify events. The end result is that you can have any browser automatically refresh the page when you save a new version of any file, even a remote browser running on another computer.

That said, dweb stands for debugging webserver, so don't event think of using it in a production environment. It also assumes some sane defaults:

  1. The webserver is started on port 8000 and the socket.io server is started on port 8080.
  2. The HTML is assumed to be well-formed enough to contain at least a body or head element.

Install

Install via npm. Remember, you need a Linux system that supports the inotify package.

npm install -g dweb

Usage

Type dweb in any directory and point your browser to http://localhost:8000. No files are harmed in the running of this webserver.

Keywords

FAQs

Last updated on 05 Oct 2013

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc