<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://devlicio.us/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Christopher Bennage - All Comments</title><link>http://devlicio.us/blogs/christopher_bennage/default.aspx</link><description>Not all who wander are lost.</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 SP1 (Build: 31106.3070)</generator><item><title>re: Node.js on Windows (or JavaScript for the backend)</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/07/28/node-js-on-windows.aspx#68164</link><pubDate>Sun, 04 Sep 2011 00:43:13 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68164</guid><dc:creator>Bangon Kali</dc:creator><description>&lt;p&gt;I&amp;#39;ve been playing around Node.JS for a while. And it&amp;#39;s really a very good piece of technology. So I tried to build this simple Windows Installer package for NodeJS and some of its most common modules. You can check out my Google project page from here &lt;a rel="nofollow" target="_new" href="http://j.mp/nP3gDL"&gt;http://j.mp/nP3gDL&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;Currently, the modules included are MySQL and Socket.IO because they&amp;#39;re the most used for my part. However, I&amp;#39;m working on to add many more modules as they&amp;#39;re tested to work perfectly with Windows. I hope someone can help me add more modules, until a package manager that is Windows Compatible arrives, but for the moment, I think this will do. &lt;/p&gt;
&lt;p&gt;Additionally, i have pieced up this simple tutorial on how to add a simple chat system for an existing website (served by an existing web server such as Apache) by simply adding minimal code to the pages it serves and using NodeJS + SocketIO as another server to provide for asynchronous updates (e.g. chat) to the existing website. &lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68164" width="1" height="1"&gt;</description></item><item><title>re: Restarting Node.js When Your Source Changes</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/08/09/restarting-node-js-when-your-source-changes.aspx#68151</link><pubDate>Mon, 29 Aug 2011 12:09:28 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68151</guid><dc:creator>Lord Metroid</dc:creator><description>&lt;p&gt;Reloading a module, is very easy. simply delete it from the cache and load it again.&lt;/p&gt;
&lt;p&gt;var path = require.resolve(&amp;quot;yourModule&amp;quot;);&lt;/p&gt;
&lt;p&gt;delete require.cache[path];&lt;/p&gt;
&lt;p&gt;require(&amp;quot;yourModule&amp;quot;);&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68151" width="1" height="1"&gt;</description></item><item><title>re: Restarting Node.js When Your Source Changes</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/08/09/restarting-node-js-when-your-source-changes.aspx#68129</link><pubDate>Mon, 22 Aug 2011 21:52:50 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68129</guid><dc:creator>Christopher Bennage</dc:creator><description>&lt;p&gt;Thanks for the links to node-supervisor, I did miss that. (Still, it was a fun exercise.)&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68129" width="1" height="1"&gt;</description></item><item><title>re: Node.js on Windows (or JavaScript for the backend)</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/07/28/node-js-on-windows.aspx#68128</link><pubDate>Mon, 22 Aug 2011 21:51:32 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68128</guid><dc:creator>Christopher Bennage</dc:creator><description>&lt;p&gt;Regarding the console.log glitch, sorry about the typo.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68128" width="1" height="1"&gt;</description></item><item><title>re: Node.js on Windows (or JavaScript for the backend)</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/07/28/node-js-on-windows.aspx#68127</link><pubDate>Mon, 22 Aug 2011 21:50:53 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68127</guid><dc:creator>Christopher Bennage</dc:creator><description>&lt;p&gt;@Pritesh I downloaded node.exe to a directory I named &amp;#39;node.js&amp;#39;. It looks like you might not be executing it from the correct location. &lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68127" width="1" height="1"&gt;</description></item><item><title>re: Node.js on Windows (or JavaScript for the backend)</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/07/28/node-js-on-windows.aspx#68126</link><pubDate>Mon, 22 Aug 2011 21:47:21 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68126</guid><dc:creator>Christopher Bennage</dc:creator><description>&lt;p&gt;@zvolkov regarding a web framework: I&amp;#39;ve been playing with Express (though not on Windows yet)&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://expressjs.com/"&gt;http://expressjs.com/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I like it, and I plan to post about it after more experience.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68126" width="1" height="1"&gt;</description></item><item><title>re: Node.js on Windows (or JavaScript for the backend)</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/07/28/node-js-on-windows.aspx#68124</link><pubDate>Mon, 22 Aug 2011 02:07:58 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68124</guid><dc:creator>Thanks! </dc:creator><description>&lt;p&gt;Can i know who compiled node.js for Windows. I&amp;#39;d like to compile the latest version. &lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68124" width="1" height="1"&gt;</description></item><item><title>re: Restarting Node.js When Your Source Changes</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/08/09/restarting-node-js-when-your-source-changes.aspx#68122</link><pubDate>Sun, 21 Aug 2011 13:24:44 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68122</guid><dc:creator>Igor</dc:creator><description>&lt;p&gt;Thank you for sharing. This was helpful.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68122" width="1" height="1"&gt;</description></item><item><title>re: Node.js on Windows (or JavaScript for the backend)</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/07/28/node-js-on-windows.aspx#68116</link><pubDate>Wed, 17 Aug 2011 14:55:27 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68116</guid><dc:creator>Pritesh</dc:creator><description>&lt;p&gt;i get an error&lt;/p&gt;
&lt;p&gt;PS C:\node.js&amp;gt; .node.exe .\server.js&lt;/p&gt;
&lt;p&gt;The term &amp;#39;.node.exe&amp;#39; is not recognized as the name of a cmdlet, function, script file, or operable program. Check the s&lt;/p&gt;
&lt;p&gt;pelling of the name, or if a path was included, verify that the path is correct and try again.&lt;/p&gt;
&lt;p&gt;At line:1 char:10&lt;/p&gt;
&lt;p&gt;+ .node.exe &amp;lt;&amp;lt;&amp;lt;&amp;lt; &amp;nbsp;.\server.js&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;+ CategoryInfo &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: ObjectNotFound: (.node.exe:String) [], CommandNotFoundException&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;+ FullyQualifiedErrorId : CommandNotFoundException&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68116" width="1" height="1"&gt;</description></item><item><title>re: Node.js on Windows (or JavaScript for the backend)</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/07/28/node-js-on-windows.aspx#68114</link><pubDate>Wed, 17 Aug 2011 14:00:23 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68114</guid><dc:creator>Pritesh</dc:creator><description>&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll try it out.&lt;/p&gt;
&lt;p&gt;Keep adding more posts.&lt;/p&gt;
&lt;p&gt;I know PHP well, but what can i do with this?&lt;/p&gt;
&lt;p&gt;sessions, login??&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68114" width="1" height="1"&gt;</description></item><item><title>re: Restarting Node.js When Your Source Changes</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/08/09/restarting-node-js-when-your-source-changes.aspx#68086</link><pubDate>Wed, 10 Aug 2011 19:54:01 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68086</guid><dc:creator>Julian Birch</dc:creator><description>&lt;p&gt;If you&amp;#39;d like a node-only approach, take a look at Cluster. &lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://learnboost.github.com/cluster/"&gt;learnboost.github.com/cluster&lt;/a&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68086" width="1" height="1"&gt;</description></item><item><title>re: Restarting Node.js When Your Source Changes</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/08/09/restarting-node-js-when-your-source-changes.aspx#68085</link><pubDate>Tue, 09 Aug 2011 13:26:42 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68085</guid><dc:creator>Leaf</dc:creator><description>&lt;p&gt;Node also has file watching capabilities, so you could do the same in Node, like this does:&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="https://github.com/isaacs/node-supervisor"&gt;github.com/.../node-supervisor&lt;/a&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68085" width="1" height="1"&gt;</description></item><item><title>re: Restarting Node.js When Your Source Changes</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/08/09/restarting-node-js-when-your-source-changes.aspx#68084</link><pubDate>Tue, 09 Aug 2011 12:51:34 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68084</guid><dc:creator>James Manning</dc:creator><description>&lt;p&gt;There&amp;#39;s potentially &amp;nbsp;(even likely) other places referring to laziness as a good thing in a programmer, but the one that exists in my mental cache is the Larry Wall quote.&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://c2.com/cgi/wiki?LazinessImpatienceHubris"&gt;c2.com/.../wiki&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;quot;We will encourage you to develop the three great virtues of a programmer: laziness, impatience, and hubris.&amp;quot;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68084" width="1" height="1"&gt;</description></item><item><title>re: Restarting Node.js When Your Source Changes</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/08/09/restarting-node-js-when-your-source-changes.aspx#68081</link><pubDate>Tue, 09 Aug 2011 09:07:43 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68081</guid><dc:creator>Michael Hart</dc:creator><description>&lt;p&gt;Weird, there are so many solutions for this, I&amp;#39;m surprised you didn&amp;#39;t find one... &lt;a rel="nofollow" target="_new" href="https://github.com/isaacs/node-supervisor"&gt;github.com/.../node-supervisor&lt;/a&gt; is one of the most common&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68081" width="1" height="1"&gt;</description></item><item><title>re: Node.js on Windows (or JavaScript for the backend)</title><link>http://devlicio.us/blogs/christopher_bennage/archive/2011/07/28/node-js-on-windows.aspx#68079</link><pubDate>Tue, 09 Aug 2011 04:47:33 GMT</pubDate><guid isPermaLink="false">40756a8b-6212-4073-9d98-6c26781577de:68079</guid><dc:creator>Christopher Bennage</dc:creator><description>&lt;p&gt;Sweet!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://devlicio.us/aggbug.aspx?PostID=68079" width="1" height="1"&gt;</description></item></channel></rss>
