2.1.0 • Published 4 years ago

http-server-pwa v2.1.0

Weekly downloads
20
License
MIT
Repository
github
Last release
4 years ago

http-server-pwa aka pwa-server

npm Build Status Build status codecov

http-server alike but for serving and rendering PWA: pwa-server

What

This is a different version (btw inspired by) of the insta-ready http-server, but with some key features to render Progressive Web Apps (or also SPA) correctly for bots like googlebot or Facebook crawlers, so your application can be crawled with its content already loaded. This should avoid the killing problem of the SEO for PWAs.

The server will render as normal, static ExpressJS server for your normal users.

Worth noting is that the server supports the history-fallback behavior. You maybe can avoid that # (hash) for your PWA navigation ✌️.

Features

The server is not "dependecies-free" like the original http-server and instead is powered by ExpressJS under the hood and Puppeter for render the pages to bots.

  • pupperender - Puppeter middleware to render correctly the PWA content for the crawlers.
  • express-history-api-fallback - to fallback correctly to the index.html.
  • express-http-to-https - automatically redirect http requests to https.
  • devcert - Create development certificate on the fly for local https. NOTE: you could be prompted to insert your password before starting the server. This is necessary of using OpenSSL. More info on devcert repository.

Production usage

The server will not create any SSL certificate on the fly when you set process.env.NODE_ENV = production even if --ssl flag is passed down. You have two alternatives here:

  • use a reverse proxy like CloudFlare and get free certification for your domain - easy peasy
  • use a custom reverse proxy like Nginx and load your certification from there

I currently don't want to support a custom certificate load. PR are always welcome.

Deploy on Heroku

In order to make the server work as expected on Heroku services (even on free tier) you must add the puppeteer-heroku-buildpack.

Since recent changes on the platform it is strongly suggested to add it from source rather than the buildpack's catalogs.

$ heroku buildpacks:set https://github.com/jontewks/puppeteer-heroku-buildpack.git

Usage

You can use it programmatically or as a CLI tool (global or local).

Install

$ yarn add http-server-pwa

Usage

const httpServerPwa = require('http-server-pwa');

const server = await httpServerPwa('./dist', {p: 3000});
//=> Server started -> ./dist localhost:3000

API

httpServerPwa(path, options)

path

Type: string

Path to serve.

options

NameCLI flagTypeDefaultDescription
portpnumber8080Port to use for running the server.
hosthstringlocalhostHost to use for running the server.
fallbackfstringindex.htmlFallback HTML file name.
httpssbooleanfalseEnable HTTPS redirect on localhost.
sslbooleanfalseEnable devcert auto-generation of SSL certification for development.
cachecbooleanfalseEnable cache for Puppeteer rendering
cacheTTLnumber3600 (s)Seconds until cached content is disregarded and puppeterized again. Only considered when cache is true.
debugdbooleanfalseIf or not show some logs.
gzipgbooleanfalseEnable serving of gzipped files if available
brotlibbooleanfalseEnable serving of brotli compressed files if available

Note: If the gzip and brotli option are both toggled, brotli compressed files will get precedence over gzipped files.

CLI

$ yarn add --global http-server-pwa
$ http-server-pwa --help # or pwa-server --help

  Usage
	  $ http-server-pwa [path] [options]

	Options
		-p --port       Port to use [Default: 8080]
		-h --host       Host to use [Default: localhost | Windows: 127.0.0.1]
		-f --fallback   Fallback HTML file name [Default: index.html]
		-s --https      Enable HTTPS redirect on localhost [Default: false]
		--ssl           Auto-generation SSL certificate during development [Default: false]
		-c --cache      Enable cache for Puppeteer rendering [Default: false]
		--cacheTTL      Seconds until cached content is disregarded and puppeterized again [Default: 3600 (s)].
		-d --debug      Be more verbose [Default: false]
		-g --gzip	Enable serving of gzipped files if available [Default: false]
		-b --brotli	Enable serving of brotli compressed files if available [Default: false]
		-h --help       Show this message

	Examples
	  $ http-server-pwa
	  Server started -> ./ localhost:8080
	  $ http-server-pwa dist -p 3000
	  Server started -> ./dist localhost:3000

License

MIT © LasaleFamine