0

Please or Register to create posts and topics.

App is loading

Hello,

I got the template downloaded and setup on my computer just fine.  Open the project in vs2017 and can compile the code.  When I try to run the program I am just sitting on the "App is loading..." screen.

I'm I missing something?  Would appreciate any help to get past this issue.

Thanks,

Kai

Go to the console (i.e. Developer Tools from your browser - Press F12 in the popular browsers) from your browser. There you'll see the error message as to why this failed.

If you're not able to resolve it from there paste the error message here.

Seems like the problem is with Node.js

 

Uncaught Error: Module build failed: Error: Missing binding C:\Users\kaiwen\source\repos\QuickApp-PRO\QuickApp.Pro\QuickApp.Pro\node_modules\node-sass\vendor\win32-x64-59\binding.node

Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js 9.x

 

Found bindings for the following environments:

- Windows 64-bit with Node.js 5.x

Yes, this error is with Node Sass. You need to update the bindings for your current environment.

This usually happens because your environment has changed since running `npm install`.

Run the below command from the same folder as package.json to rebuild node-sass for your environment.

npm rebuild node-sass --force

heberthum has reacted to this post.
heberthum

Thanks, now it works.

After I rerun

npm rebuild node-sass --force

That's nice.