Skip to content

Latest commit

 

History

History
53 lines (43 loc) · 1.48 KB

README.md

File metadata and controls

53 lines (43 loc) · 1.48 KB

NodeJS Express (server) with Angular CLI (client) Starter

NodeJS Express (server) with Angular CLI (client) Starter. This starter gives you the opportunity to separate totally your client and server applications ang bring them together for Development (proxy) and Production. Please note that the code in the client just came from the execution $ ng new client and the code in the server came from the execution $ express --view=pug server (after installing the Express Generator $ npm install express-generator -g).

Development

$ npm run install:packages
$ npm run start

Browse the Application (Client):

http://localhost:4200/

Browse the Server:

http://localhost:8080/api
http://localhost:8080/api/users

The $ npm run start execute the following script concurrently --kill-others \"cd client && ng serve --disable-host-check --proxy-config proxy.conf.json\" \"cd server && nodemon ./bin/www\". Please have in mind the client/proxy.conf.json file.

{
  "/api": {
    "target": "http://localhost:3000",
    "secure": false
  }
}

Please note that the PORT 3000 is the default NodeJS Express PORT.

Build (dist)

$ npm run build

Run Build (production ready)

$ cd dist/server
$ PORT=8000 NODE_ENV=production node bin/www

Browse the Application (Client/Server):

http://localhost:8000/
http://localhost:8000/api
http://localhost:8000/api/users

License

MIT © George I. Tsopouridis