Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/kokkorojs/web
- Owner: kokkorojs
- License: mit
- Created: 2021-12-03T14:02:14.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-22T07:13:07.000Z (almost 2 years ago)
- Last Synced: 2024-12-06T00:08:26.705Z (23 days ago)
- Language: TypeScript
- Size: 104 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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}`);
});
```