Express Server Development

Author| Jeskson Source|Dada Front End Bistro Express Server Development Create Express applications, Express routes, use of pug view templates Introduction to Express: Let's create Express applications, a Node.js Web application framework that is powerful enough to create a variety of Web applications and HTTP tools for users, and a fully func ...

Posted by sticks464 on Tue, 17 Dec 2019 00:08:57 +0100

idea uses ant design, rcreate react app

Download and install node npm Get into node Select Windows installation package (. MSI) 64bit to download and install Using msi will configure the environment variable path, which is convenient All commands are basically in the project path or directly in the terminal of idea //Open the command prompt to test whether the instal ...

Posted by marian on Sun, 15 Dec 2019 15:34:24 +0100

coverage es6 coverage solution

This article was organized in 2017 to solve the problems encountered in ES6 replacement in gridmanager version 2.3.0. The text is as follows After replacement, it was found that the original test coverage decreased from 72% to 24%. Through the local test of coverage html, it is found that the code used to overwrite the target file is the conver ...

Posted by Thethug on Thu, 12 Dec 2019 17:28:32 +0100

Cygwin configuration summary

Cygwin is A large collection of GNU and open source tools that provide features similar to Linux distributions on Windows DLL (cygwin1.dll), which provides a large number of POSIX API functions. Cygwin is not A method of running a local Linux Application on Windows. If you want the application to run on Windows, you must rebuild the applicat ...

Posted by wenxi on Sat, 07 Dec 2019 05:11:35 +0100

A multi page application configuration based on react+webpack

Brief introduction First of all, this article will not explain the web pack code, all of its configuration can be found on the documentation. I usually write some multi page applications in my work. Because I am used to the development mode of react, I write a simple configuration to share with you. If you like it, it will be helpful for your d ...

Posted by John Rowe on Fri, 06 Dec 2019 09:44:55 +0100

hexo combined with git to build blog Foundation

background How to own your own blog without spending money (server, domain name)? gitpage+hexo, realize your wish Preparation Install git client by yourself Self registration of git account Install npm and node.js by yourself Operation steps Building database Create a new one named( Your user name.github.io )For exampl ...

Posted by tomboy78 on Wed, 04 Dec 2019 11:40:45 +0100

Using jQuery and Bootstrap in Vue CLI3.0

Using jQuery and Bootstrap in Vue is not particularly in line with Vue's native writing method, but sometimes it has to be used, so put my introduction settings for your reference. To introduce jQuery and Bootstrap into Vue cli 2.0, you need to set many configuration items. There are many methods on the Internet, which will not be repeated here ...

Posted by cbrknight on Tue, 03 Dec 2019 11:45:52 +0100

Copying clipboard s on the mobile side and processing for iOS

If there is such a demand: click a button, copy the text of a certain text to the clipboard for use, we need to use some methods.On the pc, we can copy text using document.execCommand('copy'); But not on the mobile side. The project I chose is clipboard, and the actual measurement effect is perfect. On the official website of clipboard https:/ ...

Posted by berrberr on Mon, 02 Dec 2019 17:09:10 +0100

How to use echarts in Vue projects

We all know the importance of data. Even in a small project, we may use several charts to display. I need to use charts in the process of project construction recently. At last, I chose the echarts chart library. Why choose echarts? First, it's easy to start, second, it can almost meet all our development needs. Third, echarts should be made in ...

Posted by gooman on Sun, 01 Dec 2019 06:52:14 +0100

When npm is installed, it prompts for solutions to operations without permission. Error: EACCES: permission denied

When installing the plug-in, such an error occurs. The reason is that the root user used to locally install the npm package, leaving the file with root ownership, which makes the ordinary user unable to access the file content of root. The error log is as follows: npm ERR! path /Users/Kyle/.npm/_cacache/index-v5/d8/1f/98ab242d0cbad080828ef3e3f ...

Posted by nc_brox on Sun, 01 Dec 2019 00:46:00 +0100