Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot find module 'node:url' when executing typescript from webstorm

I have written this small typescript hello world example

import axios from 'axios';
import { wrapper } from 'axios-cookiejar-support';
import { CookieJar } from 'tough-cookie';

const jar = new CookieJar();
const client = wrapper(axios.create({ jar }));

client.get('https://example.com');

when I run this from webstorm i get the following error

/usr/bin/node /usr/local/lib/node_modules/ts-node/dist/bin.js /home/nayana/WebstormProjects/hello-world/hello.ts
Error: Cannot find module 'node:url'

anyone have idea on how to resolve this? I already tried npm install node:url and url

i have isolated the error to this line

const client = wrapper(axios.create({ jar }));
like image 763
DevZer0 Avatar asked Feb 05 '26 14:02

DevZer0


1 Answers

The issue maybe is related to the node version.

The axios-cookiejar-support requires a specific node version ("node": ">=14.18.0 <15.0.0 || >=16.0.0").

Check node --version and package-lock.json.

Sample:

    "node_modules/axios-cookiejar-support": {
          "version": "4.0.3",
          "resolved": "https://registry.npmjs.org/axios-cookiejar-support/-/axios-cookiejar-support-4.0.3.tgz",
          "integrity": "sha512-fMQc0mPR1CikWZEwVC6Av+sD4cJuV2eo06HFA+DfhY54uRcO43ILGxaq7YAMTiM0V0SdJCV4NhE1bOsQYlfSkg==",
          "dependencies": {
            "http-cookie-agent": "^4.0.2"
          },
          "engines": {
            "node": ">=14.18.0 <15.0.0 || >=16.0.0"
          },
          "peerDependencies": {
            "axios": ">=0.20.0",
            "tough-cookie": ">=4.0.0"
          }
        },
like image 176
Rodrigo Matias Avatar answered Feb 08 '26 04:02

Rodrigo Matias



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!