Node.js NODE_PATH environment variable

后端 未结 3 1627
后悔当初
后悔当初 2021-01-12 08:55

During development I used to WebStorm node_path =. environment variable. I have set up a variable in the launch of the project settings. Now I

3条回答
  •  一个人的身影
    2021-01-12 09:22

    Add

    export NODE_PATH=...

    to your system environment setting (/etc/profile,~/.bash_profile...), make it works.

    or

    You can declare dependencies in package.json(project), like this:

    {
        ...
        "dependencies": {
            "connect": "~2.0.3",
            ...
        },
        ...
    }
    

    and run

    npm install

    in the same folder instead. Hope it helps.

提交回复
热议问题