Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/omgimalexis/pow
- Owner: OmgImAlexis
- Created: 2021-07-17T00:06:17.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-18T06:49:48.000Z (over 3 years ago)
- Last Synced: 2024-10-14T07:53:48.090Z (about 1 month ago)
- Topics: alpha, express, expressjs, http, http-framework, pow
- Language: TypeScript
- Homepage:
- Size: 143 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
```