Skip to content

kokkorojs/web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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}`);
});