Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/omgimalexis/pow

Pow(alpha) - A decent HTTP framework
https://github.com/omgimalexis/pow

alpha express expressjs http http-framework pow

Last synced: 29 days ago
JSON representation

Pow(alpha) - A decent HTTP framework

Awesome Lists containing this project

README

        

# Pow

A decent HTTP framework.

## Usage

```ts
import { App } from 'pow';

const app = new App({ port: 3000 });

// Add GET route
app.get('/', () => {
return 'Hello World!';
});

// Start app
app.listen();
```