I’m trying to connect Express like this:
import express from 'express'
but the browser gives the error
Cannot read properties of undefined (reading 'from')
This way
const express = require('express')
I can’t connect, because I have it in the package.json “type”: “module”
How to fix the error?