IMPORTANT!
This forum is now archived. Click here for the New Support Forum
App is loading
Quote from kaiwen on February 3, 2018, 12:58 amHello,
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
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
Quote from Eben Monney on February 3, 2018, 1:08 amGo 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.
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.
Quote from kaiwen on February 3, 2018, 4:43 amSeems 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
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
Quote from Eben Monney on February 3, 2018, 9:21 amYes, 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
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
Quote from ceosjleong on March 1, 2018, 2:55 pmThanks, now it works.
After I rerun
npm rebuild node-sass --force
Thanks, now it works.
After I rerun
npm rebuild node-sass --force
Quote from Eben Monney on March 1, 2018, 3:24 pmThat's nice.
That's nice.
IMPORTANT!
This forum is now archived. Click here for the New Support Forum