Skip to content

Commit 7c38a02

Browse files
committed
Revised old package kept for achive purpose for now
1 parent 4fe31b3 commit 7c38a02

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

Pharo/PharoJs-Base-JS-Express/PjExpressApp.class.st Pharo/PharoJs-Base-JS-Express/PjExpressAppOLD.class.st

+8-8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Uses the class PjExpressPolyfill to create an express server.
55
66
"
77
Class {
8-
#name : #PjExpressApp,
8+
#name : #PjExpressAppOLD,
99
#superclass : #PjNodeApplication,
1010
#instVars : [
1111
'server'
@@ -17,38 +17,38 @@ Class {
1717
}
1818

1919
{ #category : #webapp }
20-
PjExpressApp >> getRequest: path json: json [
20+
PjExpressAppOLD >> getRequest: path json: json [
2121
server get: path action: [ :req :res | res json: json ].
2222
]
2323

2424
{ #category : #webapp }
25-
PjExpressApp >> getRequest: path send: obj [
25+
PjExpressAppOLD >> getRequest: path send: obj [
2626
server get: path action: [ :req :res | res send: obj ].
2727
]
2828

2929
{ #category : #webapp }
30-
PjExpressApp >> listen: port [
30+
PjExpressAppOLD >> listen: port [
3131
server listen: port anon: [ Object log: 'listening on port ' + port ].
3232

3333
]
3434

3535
{ #category : #'start-stop' }
36-
PjExpressApp >> port [
36+
PjExpressAppOLD >> port [
3737
^ 3000
3838
]
3939

4040
{ #category : #webapp }
41-
PjExpressApp >> postRequest: path response: logic [
41+
PjExpressAppOLD >> postRequest: path response: logic [
4242
server post: path action: logic.
4343
]
4444

4545
{ #category : #'start-stop' }
46-
PjExpressApp >> setupPaths [
46+
PjExpressAppOLD >> setupPaths [
4747
self subclassResponsibility
4848
]
4949

5050
{ #category : #'start-stop' }
51-
PjExpressApp >> start [
51+
PjExpressAppOLD >> start [
5252
server := ExpressServer new.
5353
self setupPaths.
5454
self listen: self port.

Pharo/PharoJs-Base-JS-Express/PjHelloWorldExample.class.st Pharo/PharoJs-Base-JS-Express/PjHelloWorldExampleExpressAppOLD.class.st

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ Usage
88
4) node server.js
99
"
1010
Class {
11-
#name : #PjHelloWorldExample,
12-
#superclass : #PjExpressApp,
11+
#name : #PjHelloWorldExampleExpressAppOLD,
12+
#superclass : #PjExpressAppOLD,
1313
#category : #'PharoJs-Base-JS-Express'
1414
}
1515

1616
{ #category : #exporting }
17-
PjHelloWorldExample class >> appJsFileName [
17+
PjHelloWorldExampleExpressAppOLD class >> appJsFileName [
1818
<pharoJsSkip>
1919
^ 'server.js'
2020
]
2121

2222
{ #category : #'start-stop' }
23-
PjHelloWorldExample >> setupPaths [
23+
PjHelloWorldExampleExpressAppOLD >> setupPaths [
2424
| john |
2525
self getRequest: '/' send: 'hello world from pharojs-express!'.
2626
john := 'John'.

0 commit comments

Comments
 (0)