프런트엔드 엔지니어링 구성

1539 단어
  • package.json 프로필 생성 실행 npm init 명령에 프로필 설정 옵션
  • 이 나타납니다.
    {
      "name": "weixinpractice", //   
      "version": "1.0.0",            //   
      "description": "    ", //      
      "main": "index.js",            //     
      "scripts": {                       //    
        "test": "echo \"Error: no test specified\" && exit 1"
      },
      "author": "",                   //  
      "license": "ISC"            //  
    }
    
  • 구성 파일을 만든 후 종속 파일 이름을 가져옵니다.가져온 후:
  • {
      "name": "weixinpractice",
      "version": "1.0.0",
      "description": "    ",
      "main": "index.js",
      "scripts": {
        "start": "node start.js"
      },
      "author": "",
      "license": "ISC",
      "devDependencies": {           //   
        "clean-webpack-plugin": "^0.1.10",
        "css-loader": "^0.23.1",
        "del": "^2.1.0",
        "express": "4.8.1",
        "express-session": "1.7.6",
        "fs": "0.0.2",
         }
    }
    
  • 프로필을 저장하고 의존 파일을 가져옵니다.다음 명령 실행cnpm install
  • npm install cnpm -g --registry = 주의https://registry.npm.taobao.org네가 안cnpm이 없으면 나중에 이것을 실행할 수 있다. 이것은 npm와 마찬가지로 타오바오 에이전트를 사용했을 뿐이다. 곧 명령행 npm을 cnpm로 바꾸면 된다.
    완성!(이상 개인 학습 기록만 작성한 것으로 부적절한 점을 지적해 주시기 바랍니다)

    좋은 웹페이지 즐겨찾기