npm 명령 정리 집합

2002 단어 nodenpm

본고는 npm의 명령을 수집합니다.
 
핵심 내용:https://npmjs.org/doc/
 
 
  • adduser

  • 사용자 추가:username,password,email
        
    npm adduser

     
  • i  |  install
  • npm install (with no args in a package dir)
    npm install <tarball file>
    npm install <tarball url>
    npm install <folder>
    npm install <name> [--save|--save-dev|--save-optional]
    npm install <name>@<tag>
    npm install <name>@<version>
    npm install <name>@<version range>
    npm i (with any of the previous argument usage)

     
     
  • uninstall |  rm

  • 해당 패키지 삭제
     
    npm rm <name>
    npm uninstall <name>

     
     
  • search

  • 약관에 따라 패키지 찾기
     
    npm search [search terms...]

     
     
  • root

  • 패키지의 설치 경로 보기
     
    npm root
    
    //-g 
    npm root -g
    

     
     
  • update

  • 패키지 업데이트
     
    npm update [-g] [<name> | <name> ...]

     
     
     
  • list |  ls  |  la  |  ll

  • 설치된 패키지 목록
     
    npm list [<pkg> ...]
    npm ls [<pkg> ...]
    npm la [<pkg> ...]
    npm ll [<pkg> ...]
    

     
     
  • view package dependencies

  • 가방 의존도 보기
     
    npm view package dependences

     
     
     
  • whoami

  • npm의username 보이기
     
       
    npm whoami

     
     
     
     
     
  • init

  • 패키지를 만듭니다.json
     
    npm init

     
     
     
    확장 읽기:
     
       http://www.cnblogs.com/bluefrog/archive/2012/08/14/2639085.html
     
       http://dreamerslab.com/blog/tw/npm-basic-commands/
     
       http://hi.baidu.com/alimyself/item/3ba5200faba0c7c92f4c6b43
     

    좋은 웹페이지 즐겨찾기