@pluskode/server
v0.1.1
Published
Pluskode Backend Framework - Express-like API with uWebSockets performance. High-performance C++ core with Node.js bindings supporting HTTP, WebSocket, SSE, gRPC, MQTT, and binary protocols.
Maintainers
Readme
@pluskode/server
Pluskode Backend Framework - Express-like API with uWebSockets performance.
Installation
npm install @pluskode/serverQuick Start
const app = require('@pluskode/server')();
app.get('/', (req, res) => {
res.json({ message: 'Hello, Pluskode!' });
});
app.listen(3000, () => {
console.log('Server running on port 3000');
});Features
- ✅ Express-like API
- ✅ HTTP, WebSocket, SSE, gRPC, MQTT, Binary Streams
- ✅ High-performance C++ core
- ✅ Built-in middleware (JSON, CORS, Static, etc.)
- ✅ TLS/HTTPS support
Documentation
See main README for complete documentation.
License
MIT
