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.
npm install @pluskode/serverbash
npm install @pluskode/server
`
Quick Start
`javascript
const app = require('@pluskode/server')();
app.get('/', (req, res) => {
res.json({ message: 'Hello, Pluskode!' });
});
app.listen(3000, () => {
console.log('Server running on port 3000');
});
``