<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: JavaScript File &amp; Folder Structures: Just Pick One</title>
	<atom:link href="http://lostechies.com/derickbailey/2012/02/02/javascript-file-folder-structures-just-pick-one/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/derickbailey/2012/02/02/javascript-file-folder-structures-just-pick-one/</link>
	<description>Better Than Yesterday</description>
	<lastBuildDate>Fri, 24 May 2013 06:39:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: lyman</title>
		<link>http://lostechies.com/derickbailey/2012/02/02/javascript-file-folder-structures-just-pick-one/#comment-2970</link>
		<dc:creator>lyman</dc:creator>
		<pubDate>Tue, 08 Jan 2013 16:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=795#comment-2970</guid>
		<description>hmm, Thx ;)</description>
		<content:encoded><![CDATA[<p>hmm, Thx ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derick Bailey</title>
		<link>http://lostechies.com/derickbailey/2012/02/02/javascript-file-folder-structures-just-pick-one/#comment-2968</link>
		<dc:creator>Derick Bailey</dc:creator>
		<pubDate>Tue, 08 Jan 2013 14:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=795#comment-2968</guid>
		<description>yes, definitely. but don&#039;t make the same mistake I made - don&#039;t load every file individually from the server, as needed. that kills performance with network lag. instead, build pre-packaged &quot;apps&quot; or sub-apps that can be loaded from the server in a single call.</description>
		<content:encoded><![CDATA[<p>yes, definitely. but don&#8217;t make the same mistake I made &#8211; don&#8217;t load every file individually from the server, as needed. that kills performance with network lag. instead, build pre-packaged &#8220;apps&#8221; or sub-apps that can be loaded from the server in a single call.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lyman</title>
		<link>http://lostechies.com/derickbailey/2012/02/02/javascript-file-folder-structures-just-pick-one/#comment-2967</link>
		<dc:creator>lyman</dc:creator>
		<pubDate>Tue, 08 Jan 2013 14:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=795#comment-2967</guid>
		<description>While Develop more and more complicate apps(maybe like gmail) then I think we will care about the struct. As that we want using AMD(like requirejs) to load the js file as needed? Not just load all file at once.</description>
		<content:encoded><![CDATA[<p>While Develop more and more complicate apps(maybe like gmail) then I think we will care about the struct. As that we want using AMD(like requirejs) to load the js file as needed? Not just load all file at once.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bjarni Thorisson</title>
		<link>http://lostechies.com/derickbailey/2012/02/02/javascript-file-folder-structures-just-pick-one/#comment-2849</link>
		<dc:creator>Bjarni Thorisson</dc:creator>
		<pubDate>Thu, 22 Nov 2012 11:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=795#comment-2849</guid>
		<description>Looking at the bbclonemail project on github I can see you&#039;ve ended up with a flat structure having filenames like bbclonemail.mailapp.mailbox.js.
Did you change your mind or haven&#039;t you gotten around to updating the structure?</description>
		<content:encoded><![CDATA[<p>Looking at the bbclonemail project on github I can see you&#8217;ve ended up with a flat structure having filenames like bbclonemail.mailapp.mailbox.js.<br />
Did you change your mind or haven&#8217;t you gotten around to updating the structure?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan Johnston</title>
		<link>http://lostechies.com/derickbailey/2012/02/02/javascript-file-folder-structures-just-pick-one/#comment-2192</link>
		<dc:creator>Ryan Johnston</dc:creator>
		<pubDate>Thu, 02 Feb 2012 21:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=795#comment-2192</guid>
		<description>Completely agree with your opinion Derick especially in a practical matter.

I found working with RequireJS if I used a type based folder structure when it came to optimization RequireJS would have issues as &quot;person.js&quot; (model) and &quot;person.js&quot; (collection) cause name spacing issues if you were trying to build one module unless you hard coded the name in the define method which defeats it&#039;s purpose.</description>
		<content:encoded><![CDATA[<p>Completely agree with your opinion Derick especially in a practical matter.</p>
<p>I found working with RequireJS if I used a type based folder structure when it came to optimization RequireJS would have issues as &#8220;person.js&#8221; (model) and &#8220;person.js&#8221; (collection) cause name spacing issues if you were trying to build one module unless you hard coded the name in the define method which defeats it&#8217;s purpose.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://lostechies.com/derickbailey/2012/02/02/javascript-file-folder-structures-just-pick-one/#comment-2190</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 02 Feb 2012 15:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=795#comment-2190</guid>
		<description>Good stuff Derick. Organization with JS is tough sometimes, but then I take a deep breath and realize, it doesn&#039;t REALLY matter all that much as long as I and the members of my team all have a good understanding about how our app works!</description>
		<content:encoded><![CDATA[<p>Good stuff Derick. Organization with JS is tough sometimes, but then I take a deep breath and realize, it doesn&#8217;t REALLY matter all that much as long as I and the members of my team all have a good understanding about how our app works!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Branyen</title>
		<link>http://lostechies.com/derickbailey/2012/02/02/javascript-file-folder-structures-just-pick-one/#comment-2188</link>
		<dc:creator>Tim Branyen</dc:creator>
		<pubDate>Thu, 02 Feb 2012 13:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://lostechies.com/derickbailey/?p=795#comment-2188</guid>
		<description>Completely agree about organizing code around the type of Class it is.  Lumping dozens of Models into a single folder just seems like a completely awful way of structuring your code.</description>
		<content:encoded><![CDATA[<p>Completely agree about organizing code around the type of Class it is.  Lumping dozens of Models into a single folder just seems like a completely awful way of structuring your code.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
