Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 214 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 214 Bytes

kokkoro-web

Create web serve for kokkoro.

import { app } from '@kokkoro/web';

const port = 2333;

app.listen(port, () => {
  console.log(`web serve started at http://localhost:${port}`);
});