Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

super-simple-web-server

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

super-simple-web-server

A super simple node-express web server with https option for when you quickly need to serve some static files. Package includes self-signed certificates. Don't use this for production.

  • 1.1.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
36K
decreased by-3.77%
Maintainers
1
Weekly downloads
 
Created
Source

super-simple-web-server

Serve static files on localhost with http & https.

TO INSTALL

npm install super-simple-web-server

or

Clone repo and run npm install in the root directory.

TO RUN

npm start [</path/to/web/root>] [</path/to/some/middleware>]

Default path

Default path is your current working directory. Override by passing an optional path to your desired web root directory.

Default ports

These can be changed by passing through environment variables when starting the server: SSWS_HTTP_PORT = http port (defaults to 3000) SSWS_HTTPS_PORT = https port (defaults to 3001)

Default IP

The default IP 127.0.0.1 which should convieniently map to localhost.

Pro tip: Setting USE_LOCALHOST = false in index.js will instead scan for existing bound IP addresses on your machine via os.networkInterfaces(). The last available will be used.

Point to some middleware

To add middleware set the third arg to a path that resolves to a file exporting a function like so...

module.exports = (app) => {
	app.use(someCoolThingHere);
}

About the self-signed certifictes

Fictious self-signed certs are provided for your development convienience. They will exprire on June 6 2028. Obviously -- you don't want to use these for anything other than private testing in your own bathtub.

See ./certs/ for more info...

FAQs

Package last updated on 28 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc