@@ -5,7 +5,7 @@ Uses the class PjExpressPolyfill to create an express server.
5
5
6
6
"
7
7
Class {
8
- #name : #PjExpressApp ,
8
+ #name : #PjExpressAppOLD ,
9
9
#superclass : #PjNodeApplication ,
10
10
#instVars : [
11
11
' server'
@@ -17,38 +17,38 @@ Class {
17
17
}
18
18
19
19
{ #category : #webapp }
20
- PjExpressApp >> getRequest: path json: json [
20
+ PjExpressAppOLD >> getRequest: path json: json [
21
21
server get: path action: [ :req :res | res json: json ].
22
22
]
23
23
24
24
{ #category : #webapp }
25
- PjExpressApp >> getRequest: path send: obj [
25
+ PjExpressAppOLD >> getRequest: path send: obj [
26
26
server get: path action: [ :req :res | res send: obj ].
27
27
]
28
28
29
29
{ #category : #webapp }
30
- PjExpressApp >> listen: port [
30
+ PjExpressAppOLD >> listen: port [
31
31
server listen: port anon: [ Object log: ' listening on port ' + port ].
32
32
33
33
]
34
34
35
35
{ #category : #' start-stop' }
36
- PjExpressApp >> port [
36
+ PjExpressAppOLD >> port [
37
37
^ 3000
38
38
]
39
39
40
40
{ #category : #webapp }
41
- PjExpressApp >> postRequest: path response: logic [
41
+ PjExpressAppOLD >> postRequest: path response: logic [
42
42
server post: path action: logic.
43
43
]
44
44
45
45
{ #category : #' start-stop' }
46
- PjExpressApp >> setupPaths [
46
+ PjExpressAppOLD >> setupPaths [
47
47
self subclassResponsibility
48
48
]
49
49
50
50
{ #category : #' start-stop' }
51
- PjExpressApp >> start [
51
+ PjExpressAppOLD >> start [
52
52
server := ExpressServer new .
53
53
self setupPaths.
54
54
self listen: self port.
0 commit comments