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

subr

v0.5.0

Published

Subdomain Router

Downloads

3

Readme

subr

A subdomain router.

Install

npm install -g subr

Usage

subr -h
Usage: subr [dir] [options]

Options:
  -p, --port    Port(s) to use, comma separated
  -k, --key     File containing ssl key
  -c, --cert    File containing ssl cert
  -t, --tunnel  Tunnel to request
  -h, --help    Show help                                                                  [boolean]

Examples:
  subr                               Connects ./* to http://*.localtest.me:<random>
  subr sockets                       Connects ./sockets/* to http://*.localtest.me:<random>
  subr -p 80,443 -k <key> -c <cert>  Connects ./* to http(s)://*.localtest.me
  subr -p 1234 -k <key> -c <cert>    Connects ./* to http(s)://*.localtest.me:1234
  subr -t bob.tunnelprovider.com     Connects ./* to http(s)://*.bob.tunnelprovider.com

Example

The idea is for your http servers to listen on unix domain sockets. Nodejs allows you to do this simply by specifying a filesystem path where you would usually specify a port. The http library will create the unix domain socket for you:

// hello.js

'use strict';

const fs = require('fs');
const http = require('http');

const server = http.createServer((req, res) => {
  res.writeHead(200, { 'Content-Type': 'text/plain' });
  res.end('Hello World\n');
});

const path = `./sockets/hello`;

server.listen(path, (err) => {
  if (err) {
    throw err;
  }

  console.log(`Server running at ${path}`);

  // If you don't do this, you'll get EADDRINUSE after the first run because
  // the file will still be there after this process exits.
  process.on('SIGINT', () => { server.close(); });
});
mkdir -p sockets
node hello.js &
subr sockets -p 8080 &

Then go to http://hello.localtest.me:8080.

Don't forget to cleanup:

$ jobs
[1]-  Running                 node hello.js &
[2]+  Running                 subr sockets -p 8080 &
$ kill %1 %2
$ rmdir sockets

Static Content

If a directory is encountered instead of a socket, it will be served statically:

mkdir -p sockets
subr sockets -p 8080 &
mkdir sockets/static
echo 'Hello world!' >sockets/static/index.html
curl static.localtest.me:8080
# output: Hello world!

API

You can also require subr instead of using the cli:

npm install --save subr
'use strict';

const fs = require('fs');
const subr = require('subr');

subr({
  // Directory to look for sockets/static directories:
  // Default: .
  dir: '.',

  // Config for https:
  // Default: omit tlsConfig
  tlsConfig: {
    key: fs.readFileSync('path/to/server.key'),
    cert: fs.readFileSync('path/to/server.crt'),
  },

  // Tunnel to request (default omits this):
  // Default: omit tunnel
  tunnel: 'bob.tunnelprovider.com',

  // Ports to use, 0 meaning random port:
  // Default: [0]
  ports: [80, 443],
});