소스 검색

Update npm.md

Livio Bieri 8 년 전
부모
커밋
9f182ee686
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      pages/common/npm.md

+ 2 - 2
pages/common/npm.md

@@ -11,11 +11,11 @@
 
 `npm install`
 
-- Download a given dependency, and add it to the package.json (as `dependencies`):
+- Download a given dependency required for the application to run, and add it to the package.json:
 
 `npm install {{module_name}}@{{version}} --save`
 
-- Download a given dependency, and add it to the package.json (as `devDependencies`):
+- Download a given dependency for development purposes, and add it to the package.json:
 
 `npm install {{module_name}}@{{version}} --save-dev`