-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
22 lines (22 loc) · 970 Bytes
/
app.json
File metadata and controls
22 lines (22 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name":"app",
"ns":"express",
"title":"robberthalff.com website",
"description":"robberthalff.com website",
"nodes":[
{ "id": "0", "ns":"express", "name":"app" },
{ "id": "1", "ns":"express", "name":"get", "context":{ "path": "/" } },
{ "id": "2", "ns":"http", "name":"request", "context":{ "url": "https://github.com/psichi/chix-website/raw/master/website.md" } },
{ "id": "3", "ns":"template", "name":"markdown" },
{ "id": "4", "ns":"express", "name":"send" },
{ "id": "5", "ns":"express", "name":"listen", "context":{ "port":"80" } },
{ "id": "6", "ns":"console", "name":"log" }
],
"links":[
{ "source":"0", "target":"5", "out":"app", "in":"app" },
{ "source":"0", "target":"1", "out":"app", "in":"app" },
{ "source":"1", "target":"4", "out":"res", "in":"res" },
{ "source":"2", "target":"3", "out":"body", "in":"body" },
{ "source":"3", "target":"4", "out":"body", "in":"body", "persist": true }
]
}