<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>Angel's Blog</title>
		<link>https://angelcool.net/sphpblog/blog_index.php</link>
		<description><![CDATA[No Footer]]></description>
		<copyright>Copyright 2026, Angel</copyright>
		<managingEditor>Angel</managingEditor>
		<language>en-US</language>
		<generator>SPHPBLOG 0.7.0</generator>
		<item>
			<title>Node.js: Creating a new project with Express framework</title>
			<link>https://angelcool.net/sphpblog/blog_index.php?entry=entry150209-064513</link>
			<description><![CDATA[<pre>// install express globally<br />$npm install -g express-generator<br /><br />// create a new project using handlebars for views<br />$express -hbs &quot;node-chat&quot;<br /><br />// cd into &quot;node-chat&quot; and execute:<br />$npm install<br /><br />// add suport for socket.io<br />$npm install socket.io --save<br /><br /><br />// output versions<br />[acool@localhost node-chat]$ node --version<br />v0.10.33<br />[acool@localhost node-chat]$ npm --version<br />1.3.6<br />[acool@localhost node-chat]$ express --version<br />4.11.1<br /><br />// make sure daemon (dev only) is installed and run:<br />// (I think you can also do npm start or node bin/www)<br />[acool@localhost node-chat]$ nodemon bin/www <br /><br />// finally go to browser and type <a href="http://localhost:3000" >http://localhost:3000</a><br />// ...socket.io sample to come.<br /></pre>]]></description>
			<category>- Node.js Notes</category>
			<guid isPermaLink="true">https://angelcool.net/sphpblog/blog_index.php?entry=entry150209-064513</guid>
			<author>Angel</author>
			<pubDate>Mon, 09 Feb 2015 14:45:13 GMT</pubDate>
		</item>
	</channel>
</rss>
