Fabrication of electron imitating qq(2) main interface

Make it from scratch and finally put the written components together!Pure css, which has been written for several days, is a bit tiring. sass will be used in this chapter. If the code is too long, it will be written in two or more chapters.There will be detailed comments in the code for you to read and understand.The interface may be partially ...

Posted by ICKelly on Sat, 19 Jan 2019 19:54:12 -0800

Understanding Stream (Stream) in node Summary

Stream is simply an abstract interface, which is implemented by many objects in Node. For example, the request object that initiates a request to an http server is a Stream and stdout (standard output). There are four flow types in Node: Readable - Readable operation. Writable - Writable operation. Duplex - Readab ...

Posted by mhoard8110 on Sat, 19 Jan 2019 07:45:12 -0800

FE - The Way to Node and Webpack - Must Know Vue Router!

Recommended information vue-router 2 Some things in the data are not understood, which can be found in this paper. (No, comment or personal trust) 1. Installation and configuration Installation: npm install vue-router -D (-save-dev) To configure: For ease of use, a new router.js is created to register and configure VueRouter, such ...

Posted by shefali on Sat, 05 Jan 2019 18:12:09 -0800

Nodejs (1): mac installs nodejs & electronic environment develops desktop applications

1. Download the node installation package https://github.com/electron/electron Electron is a cross-platform desktop application development tool released by Github, which supports the development of desktop applications by Web technology. It is developed based on C++. The core of GUI is from Chrome, while the JavaScript engine uses v8. mac ...

Posted by kaos057 on Wed, 02 Jan 2019 20:33:10 -0800

Debian 8.x/Ubuntu 16.04.x Build Ghost Tutorial

Label of this article: LEMP/LNMP Course  Ubuntu Debian Ghost Debian8.x/Ubuntu16.04.x Build Ghost Ghost It's a use Node.js Developed blog system, as opposed to using PHP WordPress It's lighter and more friendly, so this site has been switched from WordPress to Ghost In this paper, the author introduces the following points: Debian Building Gho ...

Posted by praveenhotha on Mon, 31 Dec 2018 18:21:08 -0800

Node+Express+Vue+Element+MySQL Simple Implementation of Front-end and Back-end Separation

Source code 1. Installing node environment Please refer to the specific installation tutorial. http://nodejs.cn/ 2. Tower Construction Vue Front End Project Using vue-cli scaffolding provided by Vue official website vue-cli command-line tool # Global Installation vue-cli $ npm install --global vue-cli # Create a new project based on Web pack te ...

Posted by lasse48 on Mon, 31 Dec 2018 12:03:08 -0800

Node.js Domestic MVC Framework ThinkJS Development Configuration

Original: Jingxiu Web page instantly pushes https://xxuyou.com Reprinted please indicate the source Links: https://blog.xxuyou.com/nodejs-thinkjs-study-config/ This series of tutorials is in the version of ThinkJS v2.x. Official website (For example, the course is mainly about practical operation. Define configuration files by module thinkj ...

Posted by paulareno on Thu, 27 Dec 2018 18:36:06 -0800

Vue-SSR Series (1) vue2.0+node+express+webpack to realize vue-ssr server rendering of single-page Application small demo

First, what is server-side rendering (SSR)? Roughly speaking, the server splices the static pages requested by users and returns them directly to the client. The client activates these static pages to make them dynamic and responsive to subsequent data changes. Second, why use server-side rendering (SSR)? 1. Better SEO, because sea ...

Posted by kcomer on Wed, 26 Dec 2018 14:18:06 -0800

Single page WEB application (7), Socket.IO of WebServer Node.js

I learned the Express framework before, and I got a general idea about it. Based on node.js server, I built a simple one. I finished all kinds of middleware use and routing functions. Then I got to communicate with you, including monitoring the changes of files or data, and monitoring and processing of events. Then I used Socket.io. I just tou ...

Posted by Caesar on Mon, 17 Dec 2018 15:03:04 -0800

Complete analysis of all core concepts of vuex State Getters Mutations Actions

Installation: npm install --save vuex Introduce import Vuex from 'vuex' import Vue from 'vue' Vue.use(Vuex) Introduction of several parameters of vuex State Stores Initial Data Getters. Processing secondary processing of data in a State (filtering data like filters) such as returning an object from a State, we want to extract the value of a ...

Posted by stemp on Mon, 17 Dec 2018 14:03:04 -0800