data = { "fname" : "fname","lname":'\"lname\"'};
For the second issue of null, I'll check in a work around today.
Subbu
Subbu
Try "npm install expat" in some temp dir. If that goes through you've the right dependencies installed. If not, expat and expat-devel are the libs to look for.
I just built a CentOS 6.0 x86 VM using VirtualBox. I installed gcc, openssl, expat, expat-devel, and then node-0.6.14. After that I created a new ql.io app and it started fine.
On some distros, some folks ran into this issue. Could you try the fix in the link below?
http://archive.cnblogs.com/a/2178519
Subbu
Subbu
ql.io uses a xml2json which in turn uses node-expat. node-expat is built on expat which is a native lib on most operating systems. Since such modules are not binary portable, npm uses node-waf to build them locally. That step is failing in your case. As I mentioned below, I'm able to run ql.io on a fresh CentOS 6.0 VM last night without any issues.
However, this issue has bugged us enough that I would like to get to the bottom of this.
Let me setup a new CentOS instance on EC2 and share it with you to compare.
Subbu
yum groupinstall 'Development Tools'
yum install openssl
yum install openssl-devel
yum install expat-devel
rpm -Uvh http://repo.webtatic.com/yum/centos/5/latest.rpm
yum install --enablerepo=webtatic git-core
Download, configure, make and make install node
Create a new ql.io app
bin/start.sh
I will send you the key to access this instance privately.
Subbu