Home > Net >  Module not found: Error: Can't resolve 'http' in React
Module not found: Error: Can't resolve 'http' in React

Time:01-18

I want to use

const http = require('http');

says

Module not found: Error: Can't resolve 'http'

Node version: 14.18.2

React version: 17.0.2

CodePudding user response:

The http module is a nodejs module. On the React App, you can only use modules that leverage the browser's capabilities. For example a popular library for calling API's and such is axios, or you could just use fetch.

  •  Tags:  
  • Related