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
/
node
/
server.js
8 lines
(5 loc)
•
173 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{
Abi
}
from
'abi.js'
;
const
abi =
new
Abi
() .
get
(
'/'
,
() =>
'Welcome to Abi.js!'
) .
get
(
'/hello(/:name)?'
,
(
name =
'World'
) =>
`Hello
${name}
!`
); abi.
listen
();