On May 29, 2013, at 11:14, Yifan Wu wrote: > Hi everyone, I'm fairly new to node and we are thinking about using node and > derby for our new website targeting at Chinese customers, and a good chunk of > the people are still using WindowsXP and old IEs --- does anyone know how bad > it would be on these old browsers? Thanks and sorry if this is a dumb > question!
Node lets you write network servers. Web servers would be a subset of that. Since any web browser, old versions of IE included, should speak relatively standards-compliant HTTP, there should be no problem serving content to them from node. Whether the HTML you write and serve is compatible with the old IE rendering engines is a completely different matter, and is entirely up to you. And if you want to use modern features like websockets, you're probably out of luck. -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
