Nowadays, Jenkins is powerful and is like a standard tool for continue integration. this article is going to introduce the way to create, testing a pipeline. the pipeline will use jenkins pipeline script syntax to define, and use replay feature to test.
Continue reading Jenkins Pipeline Create Testing
Use Git Via SSH
Continue reading Use Git Via Ssh
GraphQL: a simple introduction
Continue reading Graphql A Simple Introduction
Times when I use ES6 feature in nodejs and run it, encounter the problem of “SyntaxError: Unexpected token import”
Continue reading Nodejs and ES6
Google Javascript style guid and more
Airbnb Javascript style guid
Continue reading Google Javascript style guid and airbnb
We are familiar with the jquery function, $.extrend. Now with Destructuring assignment, we can do it like this:
Continue reading Destructuring assignment and $.extend without jquery
The difference between debounce and throttle function:
- debounce - will have delay and wait a while to see if there are new invoke, if there are, renew the delay.
- throttle - will guarantee execute at the giving period.
Continue reading debounce throttle function - the correct way to use
Top 1000 most depended-upon packages have been list at here.
Continue reading Top 1000 most depended-upon Javascript packages
These days I have do some benchmark test for Java and Node.js by using JMeter, some problem made me spend much time try to resolve.
Continue reading Some Thoughts After Used JMeter
Now Node.js support inspector protocol (>= 6.3 (Windows: >= 6.9)), we can add inspector by run script like this shell node --inspect app.js
.
Continue reading Debug Nodejs with VSCode