UNPKG
create-abi
Version:
latest (0.0.0)
0.0.0
Interactive CLI for create Abi.js projects.
github.com/abi-js/abi
abi-js/abi
create-abi
/
starters
/
deno
/
server.ts
8 lines
(5 loc)
•
183 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
Abi
}
from
'npm:abi.js'
;
const
abi =
new
Abi
() .
get
(
'/'
,
() =>
'Welcome to Abi.js!'
) .
get
(
'/hello(/:name)?'
,
(
name =
'World'
) =>
`Hello
${name}
!`
);
export
default
abi;