From project construction to plug-in publishing to npm
preface
In our usual development work, we can pull out many common components and methods and publish them in the form of npm plug-ins on npm or our own npm private library to achieve the reuse effect.
Taking a react plug-in as an example, this article will go through a series of steps, such as development project construction, plug-in writin ...
Added by drummerboy on Wed, 15 Sep 2021 21:55:43 +0300
Real time update react project from 0
This article is more detailed. It's about the beginning of react project, from the foundation to the actual project. I hope the industry leaders don't laugh at it. How about myself! If there are any mistakes in my study, I can point them out. I can learn from them and correct them. I hope to make progre ...
Added by ttaceman on Sun, 28 Jun 2020 08:03:15 +0300
Building guide of vuePress blog
Building guide of vuePress blog
node environment and npm support required
If npm will not be installed, go to: Installation instructions
Overview of vuePress
Static website generator driven by Vue
Generating web pages based on markdown syntax
Customizable and extensible styles
Can be published to gi ...
Added by irandoct on Sun, 21 Jun 2020 12:49:03 +0300
Epidemic map data display platform
Epidemic data map display
The realization of Chinese map
First look at the renderings.
The whole project is completed under the vue framework. After the routing configuration is completed, you can start the map display part. Here I will only show the domestic epidemic part, which I have completed in ...
Added by paulspoon on Sun, 14 Jun 2020 12:26:34 +0300
Electronic builder packaging configuration + electronic Updater application update complete tutorial And step pit summary
Electronic packaging and application automatic update
1, Electronic builder
1. Installation and configuration of electronic builder
2. Problems and solutions in packaging of electronic builder
2, Electronic Updater
1, Electronic builder
1. Installation and configuration of electronic builder ...
Added by designerguy on Sat, 13 Jun 2020 12:43:52 +0300
Implementation of mutual transformation between JSON and HTML
The main function is to convert html to json, and then restore html by json
style and script tags can be removed
Convert inline styles to JS objects
Convert class to array
Mainly depends on htmlparser2 ; this is a powerful html parsing library with superior performance
Direct code
import { Parser } from "htmlparser2"
const numberValueReg ...
Added by reddrum on Tue, 19 May 2020 17:50:42 +0300
Build your own component library based on Vue
Address of the project: https://husilang.github.io/zm-ui
Project reference: Build Vue component library VV-UI from scratch
The original intention of the project is to learn how to encapsulate a Vue based UI component library, and record each step by the way, as well as the difficulties and experiences encountered in the process.
Here is my pers ...
Added by shane0714 on Mon, 18 May 2020 16:59:56 +0300
Encapsulate the multi selection box control in react native
1. Installation of third party components
GitHub: https://github.com/crazycodeboy/react-native-check-box
Install under the command line of ReactNative project
npm i react-native-check-box –save
2. Encapsulation of local control
2.1 import and constant definitions, which can be adjusted according to the proj ...
Added by r00tk1LL on Mon, 04 May 2020 11:16:46 +0300
From Vue cli to package Publishing
Structure and description of Vue cli initial directory
├── README.md
├├ -- build the code of compiling task
│ ├── build.js
│ ├── check-versions.js
│ ├── dev-client.js
│ ├── dev-server.js
│ ├── utils.js
│ ├── webpack.base.conf.js
│ ├── webpack.dev.conf.js
│ └── webpack.prod.conf.js
├ - configuration file of config webpack
│ ...
Added by Gabriel_Haukness on Mon, 04 May 2020 06:37:28 +0300
Mobile debugging artifact (eruda)
In the daily development of mobile terminal, we usually try the mobile terminal mode of Chrome browser for development and debugging. Only when chrome debugging is completed, can we go to the real machine for testing if there is no problem. This is the big problem of mobile terminal development,
Various brands and models of mobile phones, vari ...
Added by ccooper on Thu, 30 Apr 2020 20:57:59 +0300