
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Node.js HTTP middleware for serving static files of single-page-applications.
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',
});
key | type | default | description |
---|---|---|---|
dir (required) | string | The directory to serve from. | |
index | string | "index.html" | The name of the index file(s). |
template | TemplateOptions | {} | Use to configure templating. Omit to disable templating. |
key | type | default | description |
---|---|---|---|
index | string | Set to options.index | Use this to distinguish template files from regular index files, for example "index.htmlt" |
match | `string | RegExp` | `/$([\w. |
split | `string | RegExp` | `" |
data | object | {} | The data to use when templating files. |
fitlers | { [name: string]: (value: any) => any } | defaultFilters | The 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
Node.js HTTP middleware for serving static files of single-page-applications.
The npm package static-spa receives a total of 132 weekly downloads. As such, static-spa popularity was classified as not popular.
We found that static-spa demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.