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

webwebwebs

v1.1.1

Published

Automated TLS/SSL Certificates with WebWebWeb, the Comfiest Way to make web APIs and static file servers!

Downloads

27

Readme

WebWebWebs

The lightest alternative to ExpressJS with HTTPS. The Comfiest Way to make web APIs and static file servers with automated SSL Certificates!

WebWebWebs lets you create a web server with APIs SUPER EASILY in just a few lines of code while also automatically getting free SSL certificates via Let's Encrypt and renewing them.

Just set your domain and e-mail address, and a SSL certificate will be retrieved and automatically renewed 30 days before expiration with ZERO DOWNTIME without a restart of your server or connections.

If you just need a web server without SSL certificates, check out the regular, zero-dependency WebWebWeb!

Instafluff

Like these projects? The best way to support my open-source projects is by becoming a Comfy Sponsor on GitHub!

https://github.com/sponsors/instafluff

Come and hang out with us at the Comfiest Corner on Twitch!

https://twitch.tv/instafluff

Requirements & Notes

PORT 80

Port 80 must be open and available so that ACME challenges can be successfully completed.

Domain Name

The specified domain must point to the server running with WebWebWebs. Ensure you have created an A Record on your DNS to your server.

No Response Error from Xfinity/Comcast

If you are running your server from Xfinity as your ISP and the ACME challenges are failing, you may need to turn off Advanced Security network settings on your account. Read here for instructions on how to turn this setting off.

Instructions

  1. Install webwebwebs
npm install webwebwebs --save
  1. Start the server on a port (e.g. 443 for HTTPS). Any HTML pages (e.g. index.html) can be placed in the root directory / and static files (e.g. images, scripts, and other HTML pages) can go into /web or /public and it will be served automagically
var ComfyWeb = require( "webwebwebs" );
ComfyWeb.Run( 443, {
    domain: "webwebwebs.instafluff.tv",
    email: "[email protected]"
} );
  1. (Optional) Add APIs
var ComfyWeb = require( "webwebwebs" );
ComfyWeb.APIs[ "/" ] = ( qs, body, opts ) => {
  return { "test": "example!" };
};
ComfyWeb.Run( 443, {
    domain: "webwebweb.instafluff.tv",
    email: "[email protected]"
} );

Options

The Run() function in WebWebWebs accepts several optional parameters:

  • useCORS (default: true)
  • test (default: false)

Testing Certificates (Staging)

To use the Staging environment to test certificates with Let's Encrypt, enable the test parameter.

var ComfyWeb = require( "webwebwebs" );
ComfyWeb.Run( 443, {
    test: true,
    domain: "webwebweb.instafluff.tv",
    email: "[email protected]"
} );

Handling POST/PUT/DELETE requests

All request methods are sent to the API handler. You can check the opts.req.method value to response accordingly and parse the body object for data.

var ComfyWeb = require( "webwebwebs" );
ComfyWeb.APIs[ "/account" ] = ( qs, body, opts ) => {
    switch( opts.req.method ) {
        case "GET":
            return { "account": "test" };
        case "POST":
            return JSON.parse( body );
        case "PUT":
            return { "status": "updated" };
        case "DELETE":
            return {};
    }
};
ComfyWeb.Run( 443, {
    domain: "webwebweb.instafluff.tv",
    email: "[email protected]"
} );

Reading Request Headers

The request object is passed in to the API handler. You can check for header values in opts.req.headers.

var ComfyWeb = require( "webwebwebs" );
ComfyWeb.APIs[ "/" ] = ( qs, body, opts ) => {
    return opts.req.headers;
};
ComfyWeb.Run( 443, {
    domain: "webwebweb.instafluff.tv",
    email: "[email protected]"
} );

Enabling CORS

Actually, CORS is enabled by default. To disable CORS, set the useCORS parameter:

var ComfyWeb = require( "webwebwebs" );
ComfyWeb.Run( 443, {
    useCORS: false,
    domain: "webwebweb.instafluff.tv",
    email: "[email protected]"
} );