I need to change my app’s platform from php/apache to node.js , but I am not understanding how to go ahead.
My app is having structure like codeigniter.
I want to use express , I have read it’s official ste , also beginner’s tutorial.No problem with code but not understanding how to fit in it’s structure.
Please assist me with some nice links or example
I need to change my app’s platform from php/apache to node.js , but I
Share
You can’t even remotely compare node.js to something like PHP. Node.js was designed to provide a full-stack high-performance IO framework, not a scripting language based on a web-server of your choice.
First of all, you HAVE to make sure you fully understand the node.js paradigm and it’s event-based architecture. It’s completely different to something like ASP.NET or PHP, you really have to rethink on the whole programming model. In order to achieve this, it’s important to learn node.js FROM SCRATCH! Don’t start directly with some framework like express or flatiron. Learn it from the basics:
console.log('Hello world')Maybe some good starting points:
Some further links:
Advanced documentation for node.js developer