I have a web site (multi page), that give some general information, but also generate information that come from a database (product description....)
The website architecture is done with nodejs, express, bootstrap and jade (mysql)
Is there any issue with SEO ? I have seen many post about using nodeJS + angularJS, but what if not !
Should I just add to my jade template the basic SEO info (description and keyword) in hard ? or is there something smarter ?
Thanks for your help
Just follow the usual SEO rules in your Jade (which will be rendered as HTML) and nothing should change. Google is not aware of server-side code so PHP, RoR or NodeJS shouldn't change anything.
Just make sure you organize your routes according to the best practices (the document I linked covers this aspect). That's the only server-side code I can think of that could impact on SEO.