Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kokkorojs/web

Create web user interface for kokkoro.
https://github.com/kokkorojs/web

Last synced: 14 days ago
JSON representation

Create web user interface for kokkoro.

Awesome Lists containing this project

README

        

# kokkoro-web

Create web serve for kokkoro.

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

const port = 2333;

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