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.
pico-static-server
Advanced tools
Small yet fully functional Node.js static files server with zero dependencies with HTTPS support
Tiny yet fully functional Node.js static files server with zero dependencies and HTTPS support.
Via npm:
npm install --save pico-static-server
You can start right away by running
node ./examples/pico-http-server.js
assuming you've put your content into ./examples/static/
folder.
HTTPS example requires you to generate SSL cerificates first:
cd ./examples
Generate 2048-bit RSA private key and remove the password from generated key
openssl genrsa -des3 -passout pass:x -out localhost.pem 2048 && openssl rsa -passin pass:x -in localhost.pem -out localhost.key && rm localhost.pem
Generate a Certificate Signing Request (CSR)
openssl req -new -key localhost.key -out localhost.csr
Generate a self-signed certificate that is valid for 365 days with sha256 hash and remove CSR
openssl x509 -req -sha256 -days 365 -in localhost.csr -signkey localhost.key -out localhost.crt && rm localhost.csr
Then install generated certificate in system, mark as trusted and you are ready:
node ./examples/pico-https-server.js
You may want to create your own static HTTP server:
const createServer = require('pico-static-server');
const staticServer = createServer({
defaultFile: 'index.html', // defaults to 'index.html'
staticPath: './static', // defaults to './'
port: 8080, // defaults to 8080
});
or even HTTPS one:
const createServer = require('pico-static-server');
const staticServer = createServer({
defaultFile: 'index.html', // defaults to 'index.html'
staticPath: './static', // defaults to './'
port: 8080, // defaults to 8080
protocol: 'https', // defaults to 'http'
cert: __dirname + '/localhost.crt',
key: __dirname + 'localhost.key',
});
createServer() returns an instance of http.Server or https.Server to give you control over it if needed
MIT found in LICENSE
file.
FAQs
Small yet fully functional Node.js static files server with zero dependencies with HTTPS support
We found that pico-static-server 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.
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.