I've been delving into the world of TypeScript and Angular 2 by following the guide at https://angular.io/guide/quickstart.
After going through all the steps, I encountered some errors with the final step npm start
. Here's what I got:
Microsoft Windows [Version 10.0.10586]
(c) 2015 Microsoft Corporation. All rights reserved.
J:\workspace\epimss\typescript\angular2-quickstart>npm start
> <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="55343b3220393427677824203c363e262134272115647b657b65">[email protected]</a> start J:\workspace\epimss\typescript\angular2-quickstart
> concurrently "npm run tsc:w" "npm run lite"
[0]
[0] > <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="6c0d020b19000d1e5e411d19050f071f180d1e182c5d425c425c">[email protected]</a> tsc:w J:\workspace\epimss\typescript\angular2-quickstart
[0] > tsc -w
[0]
[1]
[1] > <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="c3a2ada4b6afa2b1f1eeb2b6aaa0a8b0b7a2b1b783f2edf3edf3">[email protected]</a> lite J:\workspace\epimss\typescript\angular2-quickstart
[1] > lite-server
[1]
[0] 7:51:31 PM - Compilation complete. Watching for file changes.
[1] Did not detect a `bs-config.json` or `bs-config.js` override file. Using lite-server defaults...
[1] ** browser-sync options **
[1] { injectChanges: false,
[1] files: [ './**/*.{html,htm,css,js}' ],
[1] server: { baseDir: './', middleware: [ [Function], [Function] ] } }
[1] [BS] Access URLs:
[1] ------------------------------------
[1] Local: http://localhost:3000
[1] External: http://192.168.2.4:3000
[1] ------------------------------------
[1] UI: http://localhost:3001
[1] UI External: http://192.168.2.4:3001
[1] ------------------------------------
[1] [BS] Serving files from: ./
[1] [BS] Watching files...
[1] 16.03.09 19:51:36 404 GET /index.html
[1] 16.03.09 19:51:37 404 GET /favicon.ico
[1] 16.03.09 19:51:38 404 GET /favicon.ico
Is there anyone who has faced a similar issue?
Thank you.