我正在查看以下教程https://github.com/jakblak/thinkster_mean_app/blob/master/app.js,并且可以看到app.js中存在require('path')
。但是,package.json
似乎没有明确安装它?那么path
从何而来?它默认存在吗?
答案 0 :(得分:0)
path
是一个NodeJS内置模块,因此无需在npm上添加它。它在您安装NodeJS时已经可用,例如Console
模块或os
模块。
以下是可用的path documentation,它可以为您提供有关path
本身的更多详细信息。
here是所有内置模块和高级概念的列表。