You are viewing a single comment's thread from:
RE: My Programming Progress: Day One of "The Complete Node.js Developer Course"
Great work Matt. Node.js is easy if you have some experience with Javascript in general. Not sure if the videos have tutorials on express.js. Express is one important framework to checkout after you are done learning the basic Node.js apis.
Express.js is a great framework that provides you several APIs for speeding up the building of web services. You have Routing methods for doing CRUD operations (app.get(), app.delete(), app.post() and app.put()) or responding to client side requests. And several more...
Continue to post more and follow me @codero .
Thanks for your comment @codero
Yes, the course will be covering express.js. I'm looking forward to getting into that.