Recently I’ve came across a couple of node.js projects which use NODE_ENV for defining environment for the Development, Testing, Acceptance and Production (DTAP) pipeline. At…
Practical thinking on software engineering.
Recently I’ve came across a couple of node.js projects which use NODE_ENV for defining environment for the Development, Testing, Acceptance and Production (DTAP) pipeline. At…
Do you know what would be the result of the following code executed in node.js without babel and any transpiling? example.js Do you know the…
When preparing application for deploying to production env I want to ensure that everything is properly logged, especially things which are unexpected in code. That’s…
Embellishment of a story Recently I had to setup a new mini webserver. The functionality of this server was not very complex: 1. Fetch JSON…
In this article I will explain “Why should you test react.js components”, “How can you do testing” and “What are the problems you might come…
UPDATE: Created npm module to fix this stuff – https://www.npmjs.com/package/clean-npm-tmp Today I came to work and it appeared that builds on our Jenkins ( CI…
I wrote a vim script which can help you to do ‘gf’ on require statements when coding node.js modules. It uses node.js module resolution algorithm…