nodejs: the sprint from 0 to 1, the counter attack from graduate beginners to company leaders, what have you learned?

nodejs Foundation concept Node.js is an open source and cross platform JavaScript runtime environment. It runs outside the browser. It is an event driven asynchronous I/O single process server-side JS environment. Based on Google's V8 engine, the V8 engine executes JavaScript very fast and has very good performance. be careful: Nodej ...

Added by keefy on Sun, 23 Jan 2022 01:17:41 +0200

JS bluff the interviewer to get a high salary

The author has been systematically combing the knowledge of native JS recently, because I think JS, as the fundamental technology of front-end engineers, can't be learned too many times. I plan to make a series driven by a series of questions. Of course, there will be questioning and expansion. The content is systematic and complete. It will im ...

Added by manianprasanna on Sun, 23 Jan 2022 00:25:03 +0200

WebGIS programming: Openlayers map printing

The simplest function of map printing on the Web side is to output the map within the current window, that is, export the current map as a picture and store it to the client. Different browsers provide their own screen capture functions, and the function of exporting maps can also be realized based on the screen capture function of the browser ...

Added by WindomEarle on Sun, 23 Jan 2022 00:21:55 +0200

The uniapp project introduces wechat JSSDK and encapsulates it for use

1. Introducing wechat JSSDK In fact, I've studied this step for a long time. vue can import external cdn resources. However, in uniapp, at present, I don't know how to configure relevant files. It seems that it doesn't work according to vue's method. Still, I haven't found the right method. Friends who know can leave a message and tell ...

Added by luckybob on Sat, 22 Jan 2022 18:17:22 +0200

#Today, I built a web page with [ElementUI]. I found it really good after using it up##

Article catalog prefaceI Download of ElementUIII Use of ElementUI preface ElementUI is a desktop component library based on Vue 2.0 for developers, designers and product managers. It is a UI framework based on Vue, which develops many related components based on Vue to facilitate us to quickly develop pages. 1, Download of ElementU ...

Added by deansatch on Sat, 22 Jan 2022 16:27:28 +0200

Basic use of React (single page and interview questions about jsx, syntax specification)

Basic use of React! React introduction! React is a JAVASCRIPT library for building user interfaces. React is mainly used to build UI. Many people think that react is the V (view) in MVC. React originated from Facebook's internal project to build Instagram's website, and was open source in May 2013. React has high performance and simple code lo ...

Added by Daveg on Sat, 22 Jan 2022 13:26:06 +0200

Object extension

Object extension Concise representation of attributes const foo = 'bar'; const baz = {foo}; baz // {foo: "bar"} function f(x, y) { return {x, y}; } f(1, 2) // Object {x: 1, y: 2} In addition to attributes, methods can also be abbreviated. const o = { method() { return "Hello!"; } }; Concise writing is also useful when prin ...

Added by jenreb1 on Sat, 22 Jan 2022 11:57:15 +0200

JS uses the for loop to draw tables, parse json string data, and write tables

Background: because of work needs, it is necessary to split the data and put it into the table. A total of 64 rows and 8 columns are required. You can't do it manually, so you want to obtain the number of rows first, and then decide how many rows to draw according to the number of rows. However, there is a problem in data acquisition, which has ...

Added by bgomillion on Sat, 22 Jan 2022 09:38:24 +0200

Front end code specification - JavaScript style guide

Front end code specification - JavaScript style guide Based on github project [airbnb](https://github.com/airbnb/javascript "airbnb") translation also adds some personal understanding. The specification helps us better improve code readability and avoid some unnecessary bug s. leleshuo 1. Object 1.1 create objects using litera ...

Added by kerching on Sat, 22 Jan 2022 08:40:13 +0200

Record the production of the first Vue project - TabBar part

Vue shopping mall project preface 1. It contains a lot of my personal understanding and views; 2. This is a shopping mall project. At present, it involves routing, slots, axios data request, data storage and use; 3. This article only involves routing configuration and component slots; 4. Now a small part of the project has been compl ...

Added by ntroycondo on Sat, 22 Jan 2022 06:03:17 +0200