Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/skuyjs/http-server

Http server framework for NodeJS
https://github.com/skuyjs/http-server

framework hacktoberfest http nodejs

Last synced: 2 days ago
JSON representation

Http server framework for NodeJS

Awesome Lists containing this project

README

        

# @skuyjs/http-server
Http server framework for NodeJS

## Installation
To install `@skuyjs/http-server`, run this command using terminal inside your project.
```bash
npm install @skuyjs/http-server
```

## Usage
To use this framework, you can follow this example.
```javascript
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](./LICENSE)