| 
									
										
										
										
											2016-05-08 16:13:19 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | Chromium flicker issue | 
					
						
							|  |  |  | ---------------------- | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-04 05:18:12 +03:00
										 |  |  | The UI sometimes flickers -- at first blanks out to black then re-draws, | 
					
						
							|  |  |  | this is most noticeable on white or gray backgrounds.  | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 16:13:19 +03:00
										 |  |  | This appears to be GPU related. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package.json: | 
					
						
							|  |  |  | 	"chromium-args": "--disable-gpu-compositing", | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-04 05:18:12 +03:00
										 |  |  | This will fix the issue temporarily, but we still need a better solution. | 
					
						
							| 
									
										
										
										
											2016-05-08 16:13:19 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Remote debugging via DevTools | 
					
						
							|  |  |  | ----------------------------- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Set this in package.json: | 
					
						
							|  |  |  |   "chromium-args": "--remote-debugging-port=9222", | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Then open http://localhost:9222 in chrome. | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Sharp | 
					
						
							|  |  |  | ----- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | To build sharp for a specific version of node: | 
					
						
							|  |  |  | 	cd ./node_modules/sharp/ | 
					
						
							| 
									
										
										
										
											2016-10-04 05:11:14 +03:00
										 |  |  | 	nw-gyp rebuild --target=0.17.4 --arch=x64 | 
					
						
							| 
									
										
										
										
											2016-05-08 16:13:19 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Speedup loading of app | 
					
						
							|  |  |  | ---------------------- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | One of the ways to speed up the load times when packed is to store Node's | 
					
						
							| 
									
										
										
										
											2016-10-04 05:18:12 +03:00
										 |  |  | modules ./node_modules in a separate location, outside of the app.zip | 
					
						
							| 
									
										
										
										
											2016-05-08 16:13:19 +03:00
										 |  |  | or package.nw | 
					
						
							|  |  |  | To enable require(..) to find them: | 
					
						
							|  |  |  | 	- > npm install --save app-module-path | 
					
						
							|  |  |  | 	- when building the zip move all the modules out to a new location | 
					
						
							|  |  |  | 	  *except* app-module-path | 
					
						
							|  |  |  | 	- add this line to all root js modules *before* any other  | 
					
						
							|  |  |  | 	  require(..) is called: | 
					
						
							|  |  |  | 	  	if(process.__nwjs){ | 
					
						
							|  |  |  | 			var path = require('path') | 
					
						
							|  |  |  | 			require('app-module-path') | 
					
						
							|  |  |  | 				.addPath(path.dirname(process.execPath)  | 
					
						
							|  |  |  | 					+ '/node_modules/') | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 |