{"library":"super-simple-web-server","type":"library","category":null,"description":"Super Simple Web Server (super-simple-web-server) is a lightweight Node.js CLI utility designed for quickly serving static files via HTTP and HTTPS on localhost, primarily intended for development and testing purposes. Currently at version 1.1.4, with its last major update in March 2021, the package is in a maintenance state, fulfilling its specific niche without active feature development or a regular release cadence. A key feature is the inclusion of pre-generated, self-signed SSL certificates for HTTPS support, explicitly noted to be unsuitable for production environments and set to expire on June 6, 2028. It distinguishes itself by offering a \"fire-and-forget\" setup via `npm start` with optional command-line arguments for web root and custom CommonJS middleware, making it ideal for rapid prototyping or isolated local development without complex server configurations. While primarily a CLI tool, it also exposes a programmatic `startServer` function for more controlled integration within Node.js applications.","language":"javascript","status":"maintenance","version":"1.1.4","tags":["javascript"],"last_verified":"Wed May 27","install":[{"cmd":"npm install super-simple-web-server","imports":["const { startServer } = require('super-simple-web-server');","const ssws = require('super-simple-web-server');\nssws.startServer(process.cwd(), null, { httpPort: 3000, httpsPort: 3001 });","module.exports = (app) => {\n  app.use((req, res, next) => {\n    console.log('Middleware activated for:', req.url);\n    next();\n  });\n  // Example: Add a custom route\n  app.get('/hello', (req, res) => res.send('Hello from custom middleware!'));\n};"]},{"cmd":"yarn add super-simple-web-server","imports":[]},{"cmd":"pnpm add super-simple-web-server","imports":[]}],"homepage":null,"github":"https://github.com/garris/superSimpleExpressServer","docs":null,"changelog":null,"pypi":null,"npm":"https://www.npmjs.com/package/super-simple-web-server","openapi_spec":null,"status_page":null,"smithery":null,"compatibility":{"summary":{"python_range":"18–22","success_rate":0,"avg_install_s":null,"avg_import_s":null,"wheel_type":null},"url":"https://checklist.day/v1/registry/super-simple-web-server/compatibility"}}