0.0.3 • Published 6 years ago

servux v0.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Servux Logo

A Web Framework for node that puts UX first.

const Servux = require('servux');
const app = new Servux();
const port = 3000;

app.get('/api/hello', (req, res, next) => {
  res.end('Hello Servux!');
});

app.listen(port, () => {
  console.log(`Listening on port ${port}`);
});

// This is a Place Holder. Servux is still in development.