UNPKG
ts-make-gen
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Lightning Fast Typescript Project Generator
github.com/vaderdev/tsmake
vaderdev/tsmake
ts-make-gen
/
src
/
config
/
typescript
/
index.api.ts
10 lines
(6 loc)
•
205 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
export
const
code_api = `
import
express from
"express"
; app =
express
(); app.
get
(
"/"
, (req, res) => { res.
json
(
"hello"
) }) app.
listen
(
8000
, () => console.
log
(
"running on http://localhost:8000/"
))`;