ELK Log Platform System Installation

ELK Log Platform System Installation 1. Download elk wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.6.0.tar.gz wget https://artifacts.elastic.co/downloads/logstash/logstash-5.6.0.rpm wget https://artifacts.elastic.co/downloads/kibana/kibana-5.6.0-x86_64.rpm II. jdk Installation [roo ...

Posted by adrian_quah on Fri, 10 May 2019 09:28:28 -0700

Javascript Unit Test Tool-Jest Learning Notes (1)

Write before First of all, this is not a complete tutorial on Jest. It is just a little casual notes that one takes when he comes to Jest. Most of the content is translated into some official documents.Just let people who want to know jest know quickly what jest does and how to do it.For how to test the project, especially Reac ...

Posted by []InTeR[] on Fri, 10 May 2019 03:30:39 -0700

Using webpack to process resource files in a project

Last week, I learned to build a project from 0 and package it with webpack. However, in a real project, we need to deal with not only simple js and css files, but also other resource files such as ES6, CoffeeScript, less, Sass and pictures. At this point, you need to introduce a variety of Loader s. First, create several new di ...

Posted by Jakebert on Thu, 09 May 2019 15:00:39 -0700

react npm plug-in recommendation

react npm plug-in recommendation This article is based on the application of bloggers in peacetime. react plug-inFor a brief introduction, if you have better technical exchanges, you can contact via email: regan_jeff@163.com. Music Player( aplayer) As its introduction, "Wow, such a beautiful HTML5 music player ***", such a beautiful ...

Posted by Democreous on Thu, 09 May 2019 14:02:39 -0700

Create and publish your own Vue UI component library

Create and publish your own Vue UI component library Preface When using Vue for daily development, we often use some open source UI libraries, such as Element-UI, Vuetify, etc. These libraries can be easily introduced into our current project with a single line of commands: npm install vuetify // or yarn add vuetify Bu ...

Posted by mmoranuk on Thu, 09 May 2019 13:26:38 -0700

Front Tips: Create and publish your own Vue UI component library

Create and publish your own Vue UI component library Preface When using Vue for daily development, we often use some open source UI libraries, such as Element-UI, Vuetify, etc. These libraries can be easily introduced into our current project with a single line of commands: npm install vuetify // or yarn add vuetify But what happens when we de ...

Posted by fredfish666 on Wed, 08 May 2019 12:27:38 -0700

Hand in Hand to Learn VUE: Second-tier Component Development and Common Global api

Video tutorial Please move because you don't support video links https://www.henrongyi.top What can you learn? Of course, the second video is a little more difficult than the first one. If the previous content has not been digested, we suggest that you continue to digest the previous content, and then look at the next part. This part is the co ...

Posted by greatstar00 on Tue, 07 May 2019 17:35:39 -0700

Develop your own react-native component and publish it to npm

Write before When doing react-native development, we often find some third-party components that are easy to install and use by npm install.Have you ever thought about how we should develop and publish a component ourselves while using it?Whether it's sharing multiple projects for yourself or using open source for others, it's ...

Posted by littleelmo on Tue, 07 May 2019 17:10:40 -0700

Build a simple vue development environment based on Web pack from scratch

It's 8102. Now I'm going to talk about the configuration of webpack. Well, it's a bit late. Moreover, the project generated based on vue-cli or create-react-app has already configured webpack for us with one key, which does not seem to require our in-depth understanding. However, it is necessary to build a simple development e ...

Posted by ChetUbetcha on Sun, 05 May 2019 22:45:38 -0700

Configure webpack and build a React project from 0

Let's start with react architecture: 1 Official documents also provide direct download of react packages, but modifying the configuration of webpack is troublesome. npx create-react-app my-app cd my-app npm start Modifying the webpack configuration requires execution npm run eject 2. Build a project by yourself and configure webpack - it may ...

Posted by y4m4 on Sat, 04 May 2019 14:20:39 -0700