Summary of the first stage of learning node

Work progress this week

Learn node

1. Goal: Have a basic understanding of node, understand how node can help us to do projects, and master some basic usage

              1.22:

                           1. How to open javascript file with node

                           2. Why is there a node?

                           3. What is the role of node? node can build a web server

                           4. What are ip address and port number?

                           5. What is a temporary dead zone?

            1.23:

                        1. Imitate it today to get the data submitted by the form    

                           let url = require("url");

                           let obj = url.parse('/pinglun?name=1234&value=wererr');

                       2. Continue to learn node and organize what you think is important into a blog

           1.24:

                      1. Implement the array.slice() method

                         The blog link is as follows https://blog.csdn.net/L_Z_jay/article/details/113095459

2. Progress: The first three days of learning have been completed, and an average of two and a half days of learning for one day

What technology accumulation has been completed

1.1 learned how to start a server, and how to request.

1.2 The first day of nodejs: https://blog.csdn.net/L_Z_jay/article/details/112951959

     Temporary dead zone: https://blog.csdn.net/L_Z_jay/article/details/112991160

     Get the content submitted by the form: https://blog.csdn.net/L_Z_jay/article/details/113049134

     Implement array.slice() method:  https://blog.csdn.net/L_Z_jay/article/details/113095459

Gains and reflections this week

  If you can learn knowledge from the essence, you will have a deep understanding and sentiment. What impressed me the most during the past few days of study is

  The default export object exports in the node. Look at its essence, you will find that it is actually equivalent to the program writing one or two lines of code for us by default, and the default is for us to export module.exports; besides this, I will Finally, I know the client-side rendering and server-side rendering that students often talk about. Simply put, the server returns the rendered page, while the client

Key work plan for next week

1. Continue to learn node, strive to complete node learning this week, and then summarize the learning results of the past few days in a day or two.

2. Need to do a question on Likou

 

 

 

 

 

Guess you like

Origin blog.csdn.net/L_Z_jay/article/details/113102894