I\'d still like to try to get an example running w/ Yeoman and Express.
I tried the following and it worked \"okay\", but I\'m stuck merging the routes. (over simpl
I would comment on @btford 's answer if I had the reputation -
Just wanted to add that installing express .
after yo angular
will overwrite the grunt-created package.json file which will break grunt as @jjperezaguinaga reported.
Make sure to save a copy of package.json before installing express .
. Then add the following dependencies to the original package.json:
"dependencies" : {
"express": "3.3.4",
"jade": "*"
}