Socket
Book a DemoInstallSign in
Socket

static-spa

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

static-spa

Node.js HTTP middleware for serving static files of single-page-applications.

1.0.0
latest
Source
npmnpm
Version published
Weekly downloads
156
-44.29%
Maintainers
1
Weekly downloads
 
Created
Source

static-spa

This is middleware for serving static files of single-page-applications. I mainly designed it for express, but it might also work for similar libraries.

Basic use:

const path = require('path');
const express = require('express');
const staticSpa = require('static-spa');

const app = express();

app.use(staticSpa(path.join(__dirname, 'public')));

app.listen(8000);

Unlike express.static, staticSpa will try to find the nearest index.html and serve that instead if the originally requested file doesn't exist.

It can also take an object for additional options.

app.use(staticSpa({
  dir: path.join(__dirname, 'public'))),
  index: 'foobar.html',
});

Options

keytypedefaultdescription
dir (required)stringThe directory to serve from.
indexstring"index.html"The name of the index file(s).
templateTemplateOptions{}Use to configure templating. Omit to disable templating.

TemplateOptions

keytypedefaultdescription
indexstringSet to options.indexUse this to distinguish template files from regular index files, for example "index.htmlt"
match`stringRegExp``/$([\w.
split`stringRegExp``"
dataobject{}The data to use when templating files.
fitlers{ [name: string]: (value: any) => any }defaultFiltersThe list of filters to use in the template.

Example template with default settings:

<!DOCTYPE html>
<html>
<head>
  <base href="$base$/">
  <meta charset="UTF-8">
  <title>$title$</title>
  <link rel="styleshee" type="text/css" href="style.css">
</head>
<body>
  <h1>$title$</h1>
  <div id="main"></div>
  <script type="text/javascript" src="main.js"></script>
</body>
</html>

You can use clean to insert safe HTML.

  <title>$title|clean$</title>

Default filters:

  • clean => Replaces special characters with HTML entities.
  • encode => Encodes string using encodeURLComponent.
  • date => Converts variable to a date.
  • number => Converts variable to a number.
  • boolean => Converts variable to a boolean.
  • json => Prints variable as JSON using JSON.stringify.

FAQs

Package last updated on 12 Jul 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

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.