[youth training camp] Node.js foundation - Web application development - development and debugging - Online deployment

I learned the basics of Node.js a few days ago. Today I'll learn about Web application development, how to debug in the development process, and how to deploy online Web application development HTTP module We can use the built-in HTTP module of Node.js to build the simplest HTTP service const http = require("http"); http .crea ...

Posted by darkol on Wed, 06 Oct 2021 19:29:01 -0700

Proxy catcher and reflection method

Proxy catcher and reflection method Source JavaScript advanced programming The agent can capture 13 different basic operations. These basic operations have their own reflection API methods, parameters, associated ECMAScript operations, and invariants. get() The get () catcher will be called in the operation of getting the property value. ...

Posted by chordsoflife on Wed, 06 Oct 2021 10:09:18 -0700

What does Vue05 hook function mean

1, What is the life cycle of vue? The process from creation to use and finally destruction of Vue instances or components is called Vue's life cycle function, which can also be understood as a function that Vue instances will automatically execute at a certain point in time. The above figure is transferred from: https://blog.csdn.net/aa327056 ...

Posted by pestilence669 on Wed, 06 Oct 2021 06:00:30 -0700

React starts from scratch

React starts from scratch 4.1 introduction to react components Using React is using components Component represents some functions in a page Combine multiple components to achieve complete page functions Reusable, independent and composable 4.2 two creation methods of react component 4.2.1 creating with functions Functi ...

Posted by sanchez77 on Tue, 05 Oct 2021 10:48:10 -0700

Shangsi Valley grain college learning notes 4 - front end knowledge summary, lecturer list, front end implementation

es6 and vue basic knowledge points es6 syntax new features blog link vue basics blog link axios blog link npm, webpack blog link vue-element-admin Vue element admin is a background management system integration scheme based on element UI. Function: https://panjiachen.github.io/vue-element-admin-site/zh/guide/# function GitHub address: http ...

Posted by Hafkas on Mon, 04 Oct 2021 17:36:26 -0700

this of JS points to the problem

this of JS points to the problem This keyword is one of the most complex knowledge points in javascript. It is a special keyword, which is automatically defined in the scope of all functions. It is often used when writing javascript, but do you really understand this? As a qualified coder, he must not only recite the formula, but also understa ...

Posted by Wakab on Mon, 04 Oct 2021 15:26:44 -0700

[javasript] function expression to be called immediately

preface When you learn JavaScript, you often encounter the code of self executing anonymous functions. Today, let's mainly think about self executing. Before we learn more about this, let's talk about the name of "self execution". The name of this function in this article is not necessarily completely correct. It mainly depends ...

Posted by StripedTiger on Sun, 03 Oct 2021 18:35:48 -0700

7 pictures, realize a simple version of Vue router from zero, which is too easy to understand!

preface In the most easy to understand words, talk about the most difficult knowledge points. I believe everyone must have used Vue router in Vue project, that is, routing. Therefore, in this article, I will not explain the basic explanation of Vue router. I will not explain the source code of Vue router to you. I will take you to implement a ...

Posted by Hipster on Sun, 03 Oct 2021 17:16:45 -0700

23 super practical JS skills you should know

The purpose of this paper is to help you more skillfully use JavaScript language for development. if statement with multiple conditions Put multiple values in an array, and then call the array.   includes   method. // bad 👴 if (x === "abc" || x === "def" || x === "ghi" || x === "jkl") {   //logic } // better 👶 if (["abc", "def", ...

Posted by jeremywesselman on Sat, 02 Oct 2021 17:30:05 -0700

How GPUImage works

This article mainly explains how the GPUImage bottom layer is rendered. The GPUImage bottom layer uses OPENGL to manipulate the GPU to realize screen display Because there are very few online OpenGL actual combat materials, the official documents can not explain some methods clearly, so as to avoid the majority of students from climbing the pi ...

Posted by phoolster on Sat, 02 Oct 2021 15:57:17 -0700