npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

reload

v3.2.1

Published

Node.js module to refresh and reload your code in your browser when your code changes. No browser plugins required.

Downloads

82,414

Readme

reload

Build Status js-standard-style codecov NPM version

Automatically refresh and reload your code in your browser when your code changes. No browser plugins required.

Table Of Contents

Why?

Restarting your HTTP server and refreshing your browser is annoying.

How does it work?

Reload works in two different ways depending on if you're using it:

  1. In an existing Express application in which it creates a server side route for reload or,
  2. As a command line tool which starts its own Express application to monitor the file you're editing for changes and to serve reload-client.js to the browser.

Once reload-server and reload-client are connected, the client side code opens a WebSocket to the server and waits for the WebSocket to close, once it closes, reload waits for the server to come back up (waiting for a socket on open event), once the socket opens we reload the page.

Installation

npm install [-g] [--save-dev] reload

Two ways to use reload

There are two different ways to use reload.

  1. In an Express application, allowing your whole project to utilize reload when the code is altered
  2. As a command line application to serve up static HTML files and be able to reload when the code is altered

Using reload in Express

When used with Express reload creates a new Express route for reload. When you restart the server, the client will detect the server being restarted and automatically refresh the page.

Reload can be used in conjunction with tools that allow for automatically restarting the server such as supervisor (recommended), nodemon, forever, etc.

Express Example

server.js:

var express = require('express')
var http = require('http')
var path = require('path')
var reload = require('reload')
var bodyParser = require('body-parser')
var logger = require('morgan')

var app = express()

var publicDir = path.join(__dirname, 'public')

app.set('port', process.env.PORT || 3000)
app.use(logger('dev'))
app.use(bodyParser.json()) // Parses json, multi-part (file), url-encoded

app.get('/', function (req, res) {
  res.sendFile(path.join(publicDir, 'index.html'))
})

var server = http.createServer(app)

// Reload code here
reload(app).then(function (reloadReturned) {
  // reloadReturned is documented in the returns API in the README

  // Reload started, start web server
  server.listen(app.get('port'), function () {
    console.log('Web server listening on port ' + app.get('port'))
  })
}).catch(function (err) {
  console.error('Reload could not start, could not start server/sample app', err)
})

public/index.html:

<!doctype html>
<html>
  <head>
    <title>Reload Express Sample App</title>
  </head>
  <body>
    <h1>Reload Express Sample App</h1>
    <!-- All you have to do is include the reload script and have it be on every page of your project -->
    <!-- You do not create this route, reload creates it for you automatically -->
    <script src="/reload/reload.js"></script>
  </body>
</html>

Refer to the reload express sample app for this working example.

Manually firing server-side reload events

You can manually call a reload event by calling reload() yourself. An example is shown below:

Manual fire with promises

reload(app).then((reloadReturned) => {
  watch.watchTree(__dirname + "/public", function (f, curr, prev) {
    // Fire server-side reload event
    reloadReturned.reload();
  });
})

Manual fire with async/await

const startServer = async () => {
    const reloadReturned = await reload(app);

    watch.watchTree(__dirname + "/public", function (f, curr, prev) {
        // Fire server-side reload event
        reloadReturned.reload();
    })
}

API for Express

Reload returns a promise. The API takes a required express application and an optional options object. The promise returns an object (for information on the returned object see below).

With try/catch

To call Reload you should use a then/catch to call reload.

  •   reload(app [,opts]).then(function (reloadReturned) {
        // reloadReturned object see returns documentation below for what is returned
    
        // Reload started
      }).catch(function (err) {
        // Reload did not start correctly, handle error
      })

With async/await

If you are in an asynchronous function you can call Reload with await

  • async function asyncCall() {
      try {
        var reloadReturned = await reload(app [,opts])
        // reloadReturned object see returns documentation below for what is returned.
      } catch (err) {
        // Handle error
      }
    }

Consult the migration guide for help updating reload across major versions.

Parameters

Table of reload parameters

| Parameter Name | Type | Description | Optional | |----------------|----------|---------------------------------------------------------------------------------------------------------------------|----------| | app | object | The app. It may work with other frameworks, or even with Connect. At this time, it's only been tested with Express. | | | opts | object | An optional object of options for reload. Refer to table below on possible options | ✓ |

Table of options for reload opts parameter

| Parameter Name | Type | Description | Optional | Default | |--------------------------|---------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------|---------| | port | number | Port to run reload on. | ✓ | 9856 | | webSocketServerWaitStart | boolean | When enabled will delay starting and opening WebSocket server when requiring reload. After enabling use the startWebSocketServer function returned in the object provided by the API to start the WebSocket. Note: Failing to call the returned function with this option enabled will cause reload not to work. See return API for more information | ✓ | FALSE | | route | string | Route that reload should use to serve the client side script file. Changing the route will require the script tag URL to change. Reload will always strip any occurrence of reload.js and append reload.js for you. This is to ensure case, order, and use of / is correct. For example specifying newRoutePath as the route will give reload a route of newRoutePath/reload.js. (Recommend not modifying). | ✓ | reload | | forceWss | boolean | Forces reload client connections to always use wss (secure websockerts) even when the window location is HTTP | ✓ | FALSE | | https | object | HTTP options object. When defined runs reload in HTTPS mode | ✓ | {} | | https.certAndKey | object | Object that holds configuration for HTTPS key and cert configuration | ✓ | {} | | https.certAndKey.key | string | File path to HTTP key (not optional when defining an HTTPS object) | | null | | https.certAndKey.cert | string | File path to HTTP cert (not optional when defining an HTTPS object) | | null | | https.p12 | object | Object that holds configuration for HTTPS P12 configuration | ✓ | {} | | https.p12.p12Path | string | File path or file contents as string (Not optional when using P12 configuration | | null | | https.passphrase | string | Shared passphrase used for a single private key and/or p12. | ✓ | null | | verbose | boolean | If set to true, will show logging on the server and client side. | ✓ | FALSE |

Returns

An object containing:

| Name | Type | Description | |----------------------|----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | reload | function | A function that when called reloads all connected clients. For more information see manually firing server-side reload events. | | startWebSocketServer | function | Returns a promise. Starts and opens the WebSocket server required for reload. Only defined when using the optional parameter webSocketServerWaitStart. Read the parameters for more information | | closeServer | function | Returns a promise. Closes Reload WebSocket server | | wss | object | Web socket server |

Using reload as a command line application

There are two ways to use the command line application.

  1. In a directory serving blank static HTML files or
  2. In a project with a package.json file

Each will require different modes of installing.

In case one you should install reload globally with npm install reload -g. Also with reload installed globally you can go to any directory with an HTML file and use the command reload to constantly watch it and reload it while you make changes.

In case two you should install locally with npm install --save-dev, since this tool is to aid in development you should install it as a dev dependency.

Navigate to your html directory:

reload -b

This will open your index.html file in the browser. Any changes that you make will now reload in the browser. You don't need to modify your HTML at all.

Usage for Command Line Application

Usage: reload [options]

Options:

  -h, --help                     output usage information
  -V, --version                  output the version number
  -b, --browser                  Open in the browser automatically.
  -n, --hostname [hostname]      If -b flag is being used, this allows for custom hostnames. Defaults to localhost.
  -d, --dir [dir]                The directory to serve up. Defaults to current dir.
  -w, --watch-dir [watch-dir]    The directory to watch. Defaults the serving directory.
  -e, --exts [extensions]        Extensions separated by commas or pipes. Defaults to html,js,css.
  -p, --port [port]              The port to bind to. Can be set with PORT env variable as well. Defaults to 8080
  -s, --start-page [start-page]  Specify a start page. Defaults to index.html
  -f, --fallback [fallback]      Fallback to the start page when route is not found
  -v, --verbose [verbose]        Turning on logging on the server and client side. Defaults to false

License

(MIT License)

Copyright 2023

Orginal Author:

JP Richardson [email protected]

Owned by:

Alexander J. Lallier [email protected]