How To Get Started With Angular2 In Nw.js
How can I get a working 'hello world' for angular 2 under nw.js? I successfully got a working angular 2 app using this guide: https://angular.io/docs/js/latest/quickstart.html and
Solution 1:
It looks like your angular JavaScript file is not being loaded. That is why ng is undefined I believe.
To enable the toolbar for development purposes place the following property setting in your package.json file.
"toolbar":true,
Take a look at the following screenshot so you can begin troubleshooting.
After you click on the network tab hit F5 to refresh the page so that you can see which files have and have not loaded.
Post a Comment for "How To Get Started With Angular2 In Nw.js"