Start with node.js as a complete server-side newbie?

前端 未结 1 390
野的像风
野的像风 2020-12-09 05:47

My main question is whether it makes sense to begin with node.js as a complete server-side newb. Is JS/node.js a good choice to start server-side web-programming from scratc

相关标签:
1条回答
  • 2020-12-09 06:22

    Have no fear. Programming is all about practice and you will do mistake while writing code. But, that is how we all have learnt. Whether it is Ruby, Javascript (via Node.js), or any other language: certain aspects of programming are common and you will get familiar with things specific to that particular language over time. Being not able to remember a syntax or convention is OK. Just have reference material on your side. In fact it is encouraged to tinker and experience "let's see what happens ?" moments. This is how you learn, IMHO.

    Node.js is indeed a great choice to start learning server side web development. No doubt about that. You don't have to learn Javascript first and then start learning node. Here you can find all the resources you may want. Also, have a look at this How do I get started with Node.js

    Here is what I would recommend as your learning path. This is not even node.js 101. But, it will be a great start.

    • Hello World on console. Dead simple and lot of fun
    • Math Addition. ( Nothing to do with server development, can skip, but good if you learn it ! )
      • Addition of hard coded inputs.
      • Addition where function add(a,b) is written in another .js file. Boy, now you are creating libraries !
      • Math addition where input is provided using command line. TIP: Use https://github.com/substack/node-optimist
    • Hello World on web page.
      • Hello World for web but without express.js to start with. Here is the code - http://nodejs.org/
      • Hello World for web with http://expressjs.com/.
      • Adding some dynamism to the response. e.g Saying what time of day it is.
      • Responding based on the URL paths and query string.
      • Serving static files such as images and css.

    After completing this many tasks you will be good enough to decide what next you want to do.

    0 讨论(0)
提交回复
热议问题