Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 873 Bytes

03-serveur.md

File metadata and controls

30 lines (21 loc) · 873 Bytes

ng serve

La commande ng serve permet de démarrer un serveur web dans l'environnement de développement.

cd super-app
ng serve
ng serve
** NG Live Development Server is listening on localhost:4200, open your browser on http://localhost:4200/ **
Date: 2018-04-15T09:11:15.137Z
Hash: 60b9c3e7681a583cc07e
Time: 5011ms
chunk {inline} inline.bundle.js (inline) 3.85 kB [entry] [rendered]
chunk {main} main.bundle.js (main) 17.9 kB [initial] [rendered]
chunk {polyfills} polyfills.bundle.js (polyfills) 554 kB [initial] [rendered]
chunk {styles} styles.bundle.js (styles) 41.5 kB [initial] [rendered]
chunk {vendor} vendor.bundle.js (vendor) 7.42 MB [initial] [rendered]

webpack: Compiled successfully.

L'application est visualisable à l'adresse http://localhost:4200/.

Documentation officielle : https://github.com/angular/angular-cli/wiki/serve.