Skip to content

Commit fa7ed8b

Browse files
committed
Update README.md
1 parent c225908 commit fa7ed8b

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

NodeStackProxy/README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The project demonstrates how you can easily build single page applications (SPA)
44

55
## Instructions
66

7-
Make sure that [node.js and npm](http://nodejs.org/download/) is installed and path variables are set correctly (`Windows`: install it with `.msi`, `Linux/Mac`: http://howtonode.org/how-to-install-nodejs)
7+
Make sure that [node.js and npm](http://nodejs.org/download/) is installed and path variables are set correctly (`Windows`: install it with `.msi`, `Linux/Mac`: use [install](https://github.com/ServiceStack/ServiceStack.UseCases/blob/master/NodeStackProxy/install) script or read [how-to-install-nodejs](http://howtonode.org/how-to-install-nodejs) )
88

99
Both commands should return version:
1010

@@ -27,9 +27,22 @@ Listening: http://*:8090/api/
2727
Press any key to stop program
2828
```
2929

30-
Then script download `node-modules` for node.js and runs the server for port: `8080`.
30+
Then script download `node-modules` for node.js and runs the server for port: `8080`.
3131

3232
That's it, you can see Backbone.JS with Todo SPA application geared with ServiceStack.
3333

34+
NOTE: Service is actually a Windows Service. So you can also install it with:
35+
36+
```
37+
installutil <Path of the Service.exe>
38+
```
39+
40+
3441
### Linux & mono
3542

43+
[run](https://github.com/ServiceStack/ServiceStack.UseCases/blob/master/NodeStackProxy/run) script automatically compiles Service.sln file using `xbuild`. Then it tries to shutdown the previous Service process and run it again. When service is up and running, it downloads all required `node-modules` and run node.js app server using port: `8080`.
44+
45+
```
46+
chmod +x ./run
47+
./run
48+
```

0 commit comments

Comments
 (0)