designetwork(EN)

IT technical memo of networking

Programming-Node.js

Check the status of DNS name resolution with Express + Node.js

I created a DNS name confirmation confirmation tool in Express + Node.js for API cooperation between servers. Since name resolution is performed on Node.js on the server, it is possible to check in the same environment as the actual applic…

Express + Node.js GET the other site responce

I sometimes want to check whether the published server is accessible from other server, and created a simple program with Express + Node.js. By doing this, you can check that you can not do it by itself, such as access confirmation to the …

HTTP communication of Node.js is recommended to use then-request (sync-request is deprecated)

As introduced in this article, the sync-request module can perform HTTP communication by synchronous processing. This makes simple code without callback processing by asynchronous processing peculiar to javascript. However, on the sync-req…

POST JSON Data by sync-request module (Node.js)

Testing of POST with sync-request which can execute HTTP GET by synchronous processing. In this article, since it is asynchronous with the requst module of Node.js (JavaScript), I introduced the srnc-request module which can synchronize wi…

Get data with hierarchical JSON objects by Node.js

Node.js (JavaScript) is often used to handle JSON data, such as obtaining information from the API. JSON is a structured data format, and it can also be a hierarchical structure (nested structure). I will introduce the procedure for acquir…

Return value from request module with synchronization. (Node.js)(Not Callback)

Node.js is a JavaScript that runs without a web browser and can be used on the server side. You can develop services using Web application framework such as Express. You can also automate testing by combining with test frameworks such as S…


This Blog is English Version of my JP's.

Sorry if my English sentences are incorrect.

designetwork