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

@slava.ganzin/http2-server

v1.7.2

Published

Simple http2/spdy static server

Downloads

10

Readme

Stop bundling your css/js and enjoy HTTP2 and PUSH_PROMISE

Build Status

http2-server

Simple HTTP2/SPDY server similiar to http-server using express & node-spdy

Installation

  sudo npm install -g static-http2-server

Naive PUSH_PROMISE

By default http2-server match static resources with their Referer header (for example '/') and will server push them coupled with response, when refered resource (e.g. index.html) would be requested next time

Usage


http2-server [path] [options]

  Options:

    -h, --help                        output usage information
    -V, --version                     output the version number
    -a, --address [127.0.0.1]         address to use
    -p, --ssl-port [4443]             ssl port to use
    --http-port [8080]                http port which redirects to ssl port
    -c, --cache                       enable cache
    -m, --maxAge [0]                  cache maxAge in ms acceptable string
        https://github.com/zeit/ms
    
    -P, --no-push                     disable naive PUSH_PROMISE
    -o, --open [xdg-open]             open default app after starting the server
        -o firefox
        -o "google-chrome --incognito"
        -o "curl --insecure"
    
    -l, --log [dev]                   log format (dev|combined|common|short|tiny)
        https://github.com/expressjs/morgan#predefined-formats
    
    -s, --silent                      suppress log messages from output
    --cors                            enable CORS
    -S, --no-ssl                      disable https
          Works as plain http server without http2, spdy, push_promise
    
    -e, --cert [certs/cert.pem]       path to ssl cert file
    -k, --key  [certs/key.pem]        path to ssl key file
    --generate-cert                   save autogenerated certificates and exit
    --trust-cert                      add certificate to trusted (currently linux only)
    -g, --compression                 enable deflate/gzip/brotli/zopfli
    -i, --index [index.html]          Specify index file name
    --proxy [https://127.0.0.1:4443]  Proxies all requests which can't be resolved locally to the given url.
    e.g.: -P http://someurl.com
    -I, --no-autoindex                Disable auto index

Usage as a dependency in your project

  npm install static-http2-server --save

package.json:

...
  "scripts": {
    "start": "node_modules/.bin/http2-server -o",
  },
...

SSL certificates

For development you can use autogenerated selfsigned certificates. For production you should use Let's encrypt or any other certificate authority

Generate selfsigned certificates and trust them

  http2-server --generate-cert --trust-cert

Add previously generated certificate to trusted

  http2-server --trust-cert --cert path/to/your.cert

Additionally you can try

letsencrypt-cli