New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@liamnewmarch/static-server

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@liamnewmarch/static-server

A minimal HTTP server for static files.

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

Static server

A minimal HTTP server for static files.

Really, really minimal. In fact there are only two dependencies, chalk and mime-types, the rest is handled by a custom file system handler for Node http.

The server can be used via the CLI or imported as a module.

Install

npm install @liamnewmarch/static-server

CLI usage

Usage: static-server [options]

A minimal HTTP server for static files

Options:
  -V, --version           output the version number
  -h, --help              display help for command
  -6, --ipv6              force use of IPv6  (default: false)
  -d, --directory <path>  directory to serve (default: ".")
  -H, --host <name>       host name to use   (default: use OS default)
  -p, --port <port>       port number to use (default: use OS default)

Module

Simple version, serves the current directory (not recommended) on a random port

import { staticServer } from '@liamnewmarch/static-server';

staticServer();

More complex version, serves a static folder at http://localhost:3000 with a custom handler for http://localhost:3000/hello-world.

import { staticServer } from '@liamnewmarch/static-server';

// All options are optional
const options = {
  directory: 'static',
  host: '127.0.0.1',
  port: 3000,
  ipv6: false,
  handlers: [
    myCustomHandler,
  ],
};

function myCustomHandler(request, response, next) {
  // Custom handlers use request and response from the Node http API
  if (request.url === '/hello-world') {
    response.writeHead(200, { 'Content-Type': 'text/plain' });
    response.end('Hello, world!', 'utf-8');
  }
  // The next() callback tells the request listener to use the next handler
  next();
}

staticServer(options);

FAQs

Package last updated on 06 May 2020

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