'npm install'에 작별을 고하세요. 'npm install'이 필요 없습니다. 'npm install'은 버리세요.

7196 단어
npm install에게 작별 인사를 하고, npm install는 필요 없으며, npm install는 버리십시오.

예시



프로젝트에서
  • package.json->scripts->start/build에 npx -y ai-install를 추가합니다.

  • {
      "name": "ai-install-demo",
      "scripts": {
        "start": "npx -y ai-install && xxx serve --open",
        "build": "npx -y ai-install && xxx build"
      },
      "devDependencies": {
        "xxx": "x.y.z"
      }
    }
    


  • 새 파일 npm-start.sh를 추가합니다. 내용은 다음과 같습니다.

  • npm start 
    

    git clone 후에 npm-start.sh를 두 번 클릭하여 시작합니다. 명령을 입력하지 않아도 됩니다.

    왜냐하면




    npx -y ai-install
    


    설치되지 않은 경우 실행 중npm install.

    npx는 npm 패키지(로컬로 설치되거나 원격으로 가져온 패키지)에서 임의의 명령을 실행합니다.

    생각한다



    1초의 입력 시간을 절약합니까npm i? 아니요!
    npm i 설치 후 npm start 에 원활하게 연결되지 않아 10 ~ 60 초가 낭비되었습니다.
    npx -y ai-install 를 사용하면 npm start 가 1분 더 일찍 시작될 가능성이 높습니다.

    원사 및 pnpm




    npx -y ai-install
    


    Yarn 프로젝트에서 설치되지 않은 경우 자동으로 실행됩니다yarn install.

    pnpm 프로젝트에서 설치되지 않은 경우 자동으로 실행됩니다pnpm install.

    소스



    package.json은 commondai-install를 정의했습니다.

    {
      "name": "ai-install",
      "version": "1.0.0",
      "description": "Say goodbye to `npm install`, no need `npm install`, throw away `npm install`.",
      "main": "index.js",
      "bin": {
        "ai-install": "index.js"
      }
    }
    


    index.js가 설치되지 않은 경우 실행 중npm/yarm/pnpm install.

    #!/usr/bin/env node
    
    var fs = require('fs');
    var child_process = require('child_process');
    
    if (!fs.existsSync('node_modules')) {
      if(fs.existsSync('yarn.lock')){
        child_process.execSync('yarn install', { stdio: 'inherit' });
      } else if (fs.existsSync('pnpm-lock.yaml')){
        child_process.execSync('pnpm install', { stdio: 'inherit' });
      } else {
        child_process.execSync('npm install', { stdio: 'inherit' });
      }
    }
    


    심판



    ai-install npm

    ai-install github

    좋은 웹페이지 즐겨찾기