{"library":"potato-framework","title":"Potato Framework","description":"A simple HTTP framework for Node.js (version 1.2.0). Provides a minimal API for building web servers with routing, request handling, and middleware support. Designed for quick prototyping and small applications. Differentiates by focusing on simplicity and a single main export called Sweet Potato. Active development, but limited documentation and community adoption compared to Express.js. TypeScript types included.","language":"javascript","status":"active","last_verified":"Sat May 09","install":{"commands":["npm install potato-framework"],"cli":null},"imports":["import { SweetPotato } from 'potato-framework'","import Potato from 'potato-framework'","import { Request } from 'potato-framework'","import { Response } from 'potato-framework'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import { SweetPotato } from 'potato-framework';\nimport { createServer } from 'http';\n\nconst app = new SweetPotato();\n\napp.get('/', (req, res) => {\n  res.statusCode = 200;\n  res.end('Hello Potato!');\n});\n\nconst server = createServer(app.handle);\n\nserver.listen(3000, () => {\n  console.log('Server running on http://localhost:3000');\n});","lang":"typescript","description":"Basic HTTP server with SweetPotato routing and built-in Node http module.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}