Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Lightweight HTTP framework with automatic headers. Routes can use parameter syntax, i.e. /users/:id
, or RegExp
syntax. Route parameters are not sanitized. If 2+ routes with parameters match a request the first route will be used to extract parameters. All HTTP methods are supported.
CORS
(Cross Origin Resource Sharing) is automatically handled, and indicated with cors
Boolean on the request
Object for middleware.
Middleware arguments can be req, res, next
or error, req, res, next
. If no Error
handling middleware is registered woodland will handle it.
import {createServer} from "node:http";
import {woodland} from "woodland";
const app = woodland({
defaultHeaders: {
"cache-control": "public, max-age=3600",
"content-type": "text/plain"
},
time: true
});
app.get("/", (req, res) => res.send("Custom greeting at '/:user', try it out!"));
app.get("/:user", (req, res) => res.send(`Hello ${req.params.user}!`));
createServer(app.route).listen(8000);
import {Woodland} from "woodland";
class MyFramework extends Woodland {};
Woodland has >99% code coverage with its tests.
--------------|---------|----------|---------|---------|-------------------
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
--------------|---------|----------|---------|---------|-------------------
All files | 99.79 | 74.1 | 98.59 | 100 |
woodland.cjs | 99.79 | 74.1 | 98.59 | 100 | ...
--------------|---------|----------|---------|---------|-------------------
Please benchmark woodland
on your target hardware to understand the overhead which is expected to be <15% with etags disabled, or <25% with etags enabled. E.g. if http
can handle 50k req/s, then woodland
should handle 43k req/s.
npm
or yarn
.benchmark
script with npm
or yarn
.Results with node.js 20.8.0 & an Intel i9-12900HX (mobile) on Windows 11, with etags disabled.
> node benchmark.js
http
┌─────────┬──────┬──────┬───────┬───────┬──────────┬──────────┬───────┐
│ Stat │ 2.5% │ 50% │ 97.5% │ 99% │ Avg │ Stdev │ Max │
├─────────┼──────┼──────┼───────┼───────┼──────────┼──────────┼───────┤
│ Latency │ 1 ms │ 8 ms │ 42 ms │ 47 ms │ 10.81 ms │ 10.26 ms │ 88 ms │
└─────────┴──────┴──────┴───────┴───────┴──────────┴──────────┴───────┘
┌───────────┬─────────┬─────────┬───────┬───────┬─────────┬─────────┬─────────┐
│ Stat │ 1% │ 2.5% │ 50% │ 97.5% │ Avg │ Stdev │ Min │
├───────────┼─────────┼─────────┼───────┼───────┼─────────┼─────────┼─────────┤
│ Req/Sec │ 75967 │ 75967 │ 88703 │ 93823 │ 88409.6 │ 4152.76 │ 75952 │
├───────────┼─────────┼─────────┼───────┼───────┼─────────┼─────────┼─────────┤
│ Bytes/Sec │ 15.4 MB │ 15.4 MB │ 18 MB │ 19 MB │ 17.9 MB │ 841 kB │ 15.4 MB │
└───────────┴─────────┴─────────┴───────┴───────┴─────────┴─────────┴─────────┘
woodland
┌─────────┬──────┬──────┬───────┬───────┬──────────┬──────────┬────────┐
│ Stat │ 2.5% │ 50% │ 97.5% │ 99% │ Avg │ Stdev │ Max │
├─────────┼──────┼──────┼───────┼───────┼──────────┼──────────┼────────┤
│ Latency │ 2 ms │ 9 ms │ 57 ms │ 67 ms │ 12.82 ms │ 13.04 ms │ 119 ms │
└─────────┴──────┴──────┴───────┴───────┴──────────┴──────────┴────────┘
┌───────────┬─────────┬─────────┬─────────┬─────────┬──────────┬─────────┬─────────┐
│ Stat │ 1% │ 2.5% │ 50% │ 97.5% │ Avg │ Stdev │ Min │
├───────────┼─────────┼─────────┼─────────┼─────────┼──────────┼─────────┼─────────┤
│ Req/Sec │ 66687 │ 66687 │ 75263 │ 76095 │ 75041.61 │ 1482.92 │ 66667 │
├───────────┼─────────┼─────────┼─────────┼─────────┼──────────┼─────────┼─────────┤
│ Bytes/Sec │ 14.1 MB │ 14.1 MB │ 15.9 MB │ 16.1 MB │ 15.8 MB │ 312 kB │ 14.1 MB │
└───────────┴─────────┴─────────┴─────────┴─────────┴──────────┴─────────┴─────────┘
Returns a woodland instance. Enable directory browsing & traversal with autoindex
. Create an automatic x-response-time
response header with time
& digit
. Customize etag
response header with seed
.
{
"autoindex": false,
"cacheSize": 1000,
"cacheTTL": 300000,
"charset": "utf-8",
"corsExpose": "",
"defaultHeaders": {},
"digit": 3,
"etags": true,
"indexes": [
"index.htm",
"index.html"
],
"logging": {
"enabled": true,
"format": "%h %l %u %t \"%r\" %>s %b",
"level": "info"
},
"origins": [
"*"
],
"silent": false,
"time": false
}
Calls routes()
and returns a Boolean
to indicate if method
is allowed for uri
.
Returns a String
for the Allow
header. Caches value, & will update cache if override
is true
.
Registers middleware for a route for all HTTP methods; runs first. path
is a regular expression (as a string), and if not passed it defaults to /.*
.
Execute ignore(fn)
if you do not want the middleware included for calculating the Allow
header.
Ignores fn
for calculating the return of allows()
.
Decorates allow, body, cors, host, ip, params, & parsed
on req
and error(status[, body, headers]), header(key, value), json(body[, status, headers]), locals{} & redirect(url[, perm = false])
on res
.
Registers middleware for a route. path
is a regular expression (as a string), and if not passed it defaults to /.*
.
Returns a String to be used as an etag response header value.
Serve static files on disk.
Registers middleware for a route. path
is a regular expression (as a string), and if not passed it defaults to /.*
. See always()
if you want the middleware to be used for all HTTP methods.
Returns an Array
or Object
of routes for the specified method.
Logs to stdout
or stderr
depending on the level
, & what the minimum log level is set to.
Registers middleware for a route. path
is a regular expression (as a string), and if not passed it defaults to /.*
.
Registers middleware for a route. path
is a regular expression (as a string), and if not passed it defaults to /.*
.
Registers middleware for a route. path
is a regular expression (as a string), and if not passed it defaults to /.*
.
Override to customize final handler. Must terminate response.
Override to customize response body
, status
, or headers
. Must call onSend()
.
Override to customize response body
, status
, or headers
. Must return [body, status, headers]
!
Registers middleware for a route. path
is a regular expression (as a string), and if not passed it defaults to /.*
.
Function for http.createServer()
or https.createServer()
.
Returns an Array
of middleware for the request. Caches value, & will update cache if override
is true
.
Streams a file to the client.
Registers middleware for a route. path
is a regular expression (as a string), and if not passed it defaults to /.*
. See always()
if you want the middleware to be used for all HTTP methods.
All HTTP methods are available on the prototype (partial application of the third argument), e.g. get([path,] ...fn)
& options([path,] ...fn)
.
When woodland is installed as a global module you can serve the contents of a folder by executing woodland
in a shell. Optional parameters are --ip=127.0.0.1
& --port=8000
.
Node.js v20.8.0
PS C:\Users\jason\Projects> npm install -g woodland
changed 6 packages in 1s
PS C:\Users\jason\Projects> woodland
id=woodland, hostname=localhost, ip=127.0.0.1, port=8000
127.0.0.1 - [7/Oct/2023:15:18:18 -0400] "GET / HTTP/1.1" 200 1327
127.0.0.1 - [7/Oct/2023:15:18:26 -0400] "GET /woodland/ HTTP/1.1" 200 2167
127.0.0.1 - [7/Oct/2023:15:18:29 -0400] "GET /woodland/dist/ HTTP/1.1" 200 913
127.0.0.1 - [7/Oct/2023:15:18:32 -0400] "GET /woodland/dist/woodland.js HTTP/1.1" 200 26385
127.0.0.1 - [7/Oct/2023:15:18:47 -0400] "GET /woodland/benchmark.js HTTP/1.1" 200 1657
127.0.0.1 - [7/Oct/2023:15:18:58 -0400] "GET /woodland/sample.js HTTP/1.1" 200 845
127.0.0.1 - [7/Oct/2023:15:19:07 -0400] "GET /woodland/sample.js HTTP/1.1" 304 0
Event Emitter syntax for the following events:
app.on("connect", (req, res) => res.header("x-custom-header", "abc-def"));
Executes after the connection has been decorated, but before the middleware executes.
Executes after the response has been sent.
Executes after the response has been sent.
Executes after the response has been sent.
req
& res
are decorated with helper functions to simplify responding.
Exit the middleware chain if the route is un-protected.
Sends an error response.
Shorthand of res.setHeader()
.
Sends a JSON response.
Sends a redirection response.
Sends a response. Range
header is ignored on stream
responses.
Shorthand of res.setHeaders()
which accepts Object
, Map
, or Headers
instances.
Sets the response statusCode
property.
Woodland defaults to Common Log Format but supports Common Log Format with Virtual Host, & NCSA extended/combined log format with an info
level by default. You can change the stdout
output by changing logging.format
with valid placeholders.
You can disable woodland's logging by configuration with {logging: {enabled: false}}
.
Copyright (c) 2024 Jason Mulligan
Licensed under the BSD-3 license.
FAQs
Lightweight HTTP framework with automatic headers
The npm package woodland receives a total of 44 weekly downloads. As such, woodland popularity was classified as not popular.
We found that woodland demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.