mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
14 lines
291 B
JavaScript
14 lines
291 B
JavaScript
import Koa from 'koa'
|
|
import Serve from 'koa-static'
|
|
import Cors from '@koa/cors'
|
|
import Range from 'koa-range'
|
|
|
|
const app = new Koa()
|
|
app.use(Range)
|
|
app.use(Cors())
|
|
|
|
app.use(Serve('.'))
|
|
app.listen(9090)
|
|
|
|
console.log(`server is ready,please visit http://localhost:9090/examples/index.html`)
|