Languages
[Edit]
EN

Node.js - HTTP POST request using axios

0 points
Created by:
MindOfMadness3
696

In this article, we would like to show you how to make HTTP POST request using axios in Node.js.

Quick solution:

const axios = require('axios');

axios({
  method: 'post',
  url: '/register',
  data: {
    username: 'user1',
    password: 'password1',
  },
}).then((response) => {
  console.log(response);
});

 

Practical example

1. Install axios

npm install axios

2. Import axios using require()

const axios = require('axios');

3. Make POST request using axios.

In below example we register user using axios POST request.

Example:

const axios = require('axios');

axios
  .post('/register', {
    username: 'user1',
    password: 'password1',
  })
  .then((response) => {
    console.log(response);
  })
  .catch((error) => {
    console.log(error);
  });

References

Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join