https://github.com/hippodippo/servux
A web framework for node that puts UX first.
https://github.com/hippodippo/servux
javascript nodejs server servux
Last synced: about 2 months ago
JSON representation
A web framework for node that puts UX first.
- Host: GitHub
- URL: https://github.com/hippodippo/servux
- Owner: hippodippo
- Created: 2018-08-23T20:27:48.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-28T21:09:06.000Z (almost 8 years ago)
- Last Synced: 2025-10-02T03:35:47.921Z (9 months ago)
- Topics: javascript, nodejs, server, servux
- Language: JavaScript
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: Contributing.md
Awesome Lists containing this project
README

A Web Framework for node that puts UX first.
```js
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.
```