Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 216 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 216 Bytes

Pow

A decent HTTP framework.

Usage

import { App } from 'pow';

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

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

// Start app
app.listen();