node.js - npm not installing any module -
i new node.js. have installed node.js , tested installation ok. node -v
, npm -v
command showing version numbers. when install module it's not working. example when try install connect module using npm install connect, it's showing following result.
c:\>npm install connect connect@3.3.5 node_modules\connect ├── utils-merge@1.0.0 ├── parseurl@1.3.0 ├── debug@2.1.3 (ms@0.7.0) └── finalhandler@0.3.4 (escape-html@1.0.1, on-finished@2.2.0) c:\>
kindly me out.
that installed it. installed "locally" (to current folder) , not globally. if want install globally use -g
.
npm install -g connect
Comments
Post a Comment