UNPKG
@qbyco/tjs-cli
Version:
latest (1.5.1)
1.5.1
1.5.0
1.4.5
1.4.4
1.4.3
1.3.3
1.3.2
1.3.1
1.3.0
1.2.9
1.2.8
1.2.7
1.2.4
1.0.4
1.0.3
1.0.2
1.0.1
TrafaletJS CLI Tool
@qbyco/tjs-cli
/
resources
/
samples
/
module.js
10 lines
(7 loc)
•
213 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
TJS
.
module
(
'helloworld'
,
function
(
module
) {
module
.
use
(
'HelloWorld'
);
module
.
on
(
'render'
,
function
(
data, container
) {
this
.
singleInstance
(
'HelloWorld'
).
render
(data, container); }); });