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: 12 months 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 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-18T06:49:48.000Z (over 4 years ago)
- Last Synced: 2025-01-23T08:34:37.079Z (about 1 year 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();
```