Riddhesh Markandeya

Results 1 issues of Riddhesh Markandeya

I'm trying to send some request on the exit event. ```js const syncRequest = require('sync-request'); console.log('Process started'); process.on('exit', () => { try { let res = syncRequest('GET', 'https://jsonplaceholder.typicode.com/users/1'); console.log(JSON.parse(res.getBody())); }...