Skip to content

Convert JS ES6 code to use async/await functions #302

@SeannyPhoenix

Description

@SeannyPhoenix

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);

Metadata

Metadata

Assignees

Labels

codegenconfigThis issue could possibly be solved by adding a config optionfeatureFeature request

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions