Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/skuyjs/http-server
- Owner: skuyjs
- License: mit
- Created: 2020-04-04T00:49:51.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-06T18:03:30.000Z (almost 2 years ago)
- Last Synced: 2023-03-10T14:30:47.714Z (over 1 year ago)
- Topics: framework, hacktoberfest, http, nodejs
- Language: TypeScript
- Homepage:
- Size: 288 KB
- Stars: 11
- Watchers: 3
- Forks: 6
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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)