**** BEGIN LOGGING AT Fri Jan 20 03:00:04 2017 Jan 20 20:10:00 Hello folks. I'm trying to convert my app to 2.7, but the tutorial is incredibly lacking in detail. I have a few questions: Jan 20 20:10:11 1) is there any way to debug without packing every time? Jan 20 20:11:10 2) I have not even been able to get past Application is not a valid kind, I require enyo/kind and enyo/Application at the top of my index.js. Jan 20 20:12:01 3) Do I put the requires at the top of every one of my source files, or just index.js? Jan 20 20:42:29 4) If I create a kind with a namespace eg MyApp.Application, how do I call it? app = new IFO.Application({name:"app"}); //does not work Jan 20 20:43:00 app = new MyApp.Application({name:"app"}); //does not work Jan 20 20:51:55 trex0051: 1- i don't think so. 2- ? show source? 3- yes each file should require what it needs to work. Jan 20 20:53:36 Thanks EricBlade. I actually just figured out #2. I was using the old name method instead of using the variable directly. Jan 20 20:57:32 #4 I tried to start by creating var MyApp = {}; but obviously that will not work across source files and When I try to use new... it gives me this error: http://pastebin.com/S87QTRTr Jan 20 21:05:39 it's been a while since i've used enyo, but i think you want var kind = require('enyo/kind'); var MyApp = kind({ name: 'MyApp, ... }); var app = new MyApp(); Jan 20 21:06:09 add the missing ' after MyApp there Jan 20 22:50:39 Thanks Eric, I'll try it out here in a few. Jan 21 01:43:32 For the record, that gave me the same error. **** ENDING LOGGING AT Sat Jan 21 03:00:00 2017