Skip to content

skuyjs/http-server

Repository files navigation

@skuyjs/http-server

Http server framework for NodeJS

Installation

To install @skuyjs/http-server, run this command using terminal inside your project.

npm install @skuyjs/http-server

Usage

To use this framework, you can follow this example.

const Server = require('@skuyjs/http-server');
const server = new Server();

server.get('/', (req, res) => {
  res.send('hello');
});

server.listen(8080);
More Examples You can see more examples here.

License

MIT

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •