UNPKG
seinjs-cli
Version:
latest (1.2.1)
1.2.1
1.2.0
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.9.0
0.8.28
0.8.27
0.8.26
0.8.25
0.8.24
0.8.23
0.8.22
0.8.21
0.8.20
0.8.19
0.8.18
0.8.17
0.8.16
0.8.15
0.8.14
0.8.13
0.8.12
0.8.11
0.8.10
0.8.9
0.8.8
0.8.7
0.8.6
0.8.5
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
Command tools for Sein.js.
github.com/SeinJS/seinjs-cli
SeinJS/seinjs-cli
seinjs-cli
/
templates
/
containers
/
my-tiny-game
/
project
/
web
/
index.ts
12 lines
(9 loc)
•
243 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** *
@File
: index.ts *
@Author
: {{AUTHOR.NAME}} ({{AUTHOR.EMAIL}}) *
@Date
: {{DATE}} *
@Description
: */
import
{main}
from
'../game/index'
;
const
canvas =
document
.
getElementById
(
'container'
)
as
HTMLCanvasElement
;
main
(canvas);