postman-code-generators icon indicating copy to clipboard operation
postman-code-generators copied to clipboard

Convert JS ES6 code to use async/await functions

Open SeannyPhoenix opened this issue 5 years ago • 0 comments

Is your feature request related to a problem? Please describe. No problem, just updating code.

Describe the solution you'd like I would like to convert functions to use async/await functions.

Example existing code output for nodejs-axios:

const axios = require('axios');
let data = JSON.stringify({"field":"value"});

let config = {
  method: 'post',
  url: 'https://example.com/api/v1/endpoint',
  headers: { 
    'Authorization': 'Bearer auth_token', 
    'Content-Type': 'application/json'
  },
  data : data
};

axios(config)
.then((response) => {
  console.log(JSON.stringify(response.data));
})
.catch((error) => {
  console.log(error);
});

Proposed output:

const axios = require('axios');
let data = JSON.stringify({"field":"value"});

const config = {
  method: 'post',
  url: 'https://example.com/api/v1/endpoint',
   headers: {
   'Authorization': 'Bearer auth_token',
   'Content-Type': 'application/json'
  },
  data: data
};

async function makeCall(config){
  try {
    const response = await axios(config);
    console.log(JSON.stringify(response.data));
  } catch (error) {
    console.log(error);
  }
}

makeCall(config);

SeannyPhoenix avatar Jul 09 '20 23:07 SeannyPhoenix