LATEST TRANSMISSIONS

ENCRYPTED // PUBLIC KEY DETECTED

FILTER: TAG [node]
ONLINE
// Z.SHINCHVEN

Node Axios with a Proxy

Want to send http request via a proxy? Axios got you covered. import axios from 'axios'; const proxy = { protocol: 'http', host: '127.0.0.1', port: 7890, auth: { username: 'username', …

// Z.SHINCHVEN

VSCode Launch Configuration for Node App

VSCode's debugging launch configurations are saved in ./vscode/launch.json. To add a launch configuration for a node app: click Run and Debug in the left panel. click create a launch.json file. add…