New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

quickreload

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quickreload

A tiny thing to tell the browser to reload css / javascript when files are changed on disk

latest
Source
npmnpm
Version
2.1.2
Version published
Maintainers
1
Created
Source

quickreload

A tiny thing to make the browser reload when files are changed on disk.

Includes a command line tool and an express middleware.

Features:

  • Zero configuration. Just add quickreload as an express middleware, or run quickreload from the command line
  • Reloads css without doing a full page refresh
  • Reconnects if the backend (websockets server) goes down

Express middleware

if (process.env.NODE_ENV === 'development') {
  app.use(require("quickreload")({
    // options...
  ));
}

Valid options are:

  • inject Will inject a snippet into all reponses with content-type set to text/html that loads the browser side part of quickreload. Default is true.

If using inject: false, the following snippet must be included in the source code of pages that should reload on changes:

<script src="/quickreload.js" async></script>

Command line

Install the command system wide using npm install quickreload -g

Usage: quickreload [options] [watchdir]

  Will default to current working directory if watchdir is omitted.

  Options:

    --css <extensions...>  Comma separated list of extensions to treat as css
                           files. The client will reload all tags matching
                           link[rel=stylesheet] when files with any of these
                           extensions are changed.
                           Default: css,sass,scss,less,styl

     --js <extensions...>  Comma separated list of extensions to treat as js
                           files. The client will do a full page reload when
                           files with any of these extensions are changed.
                           Default: js,jsx,coffee,json

    --html <extensions...> Comma separated list of extensions to treat as html
                           files. The client will do a full page reload when
                           files with any of these extensions are changed.
                           Default: html

--ignore, -i <dir|globstr> A directory name or glob string that, if a directory
                           matches it will, it will not be  watched for
                           changes.
                           Default: node_modules

         --port, -p <port> Port to listen to. Will assign a random available
                           port if not given.

FAQs

Package last updated on 25 Aug 2016

Did you know?

Socket

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