javascript - Node.JS and Terminology -
excuse ignorance, i'm trying wrap head around whole node.js vs backbone.js thing. think i'm figuring out, verify or adjust understanding?
node.js platform can serve , render http?
express.js framework node.js , handling routes?
backbone.js front-end javascript library not dependent on node.js @ all?
is common/acceptable serve backbone.js html node+express, or platform better suited?
there no node.js vs backbone.js, that's analogous trees vs apples :)
node environment running javascript on server. backbone library manipulating javascript in front or back-end applications. answer questions specifically:
node.js platform can serve , render http?
yes, 1 of many other uses.
express.js framework node.js , handling routes?
not routes, framework structuring node.js web applications. suggest book smashing nodejs takes through building web server , shows how express manages of have yourself.
backbone.js front-end javascript library not dependent on node.js @ all?
it not dependent on node, can used within node environment (since node runs javascript).
is common/acceptable serve backbone.js html node+express, or platform better suited?
this shouldn't asked on stackoverflow not have definitive answer. recommend google search "node web frameworks" if looking recommendations, sounds should learn bit more web development before worrying framework use.
Comments
Post a Comment