'npm install'에 작별을 고하세요. 'npm install'이 필요 없습니다. 'npm install'은 버리세요.
npm install
에게 작별 인사를 하고, npm install
는 필요 없으며, npm install
는 버리십시오.예시
프로젝트에서
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
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은 commond
ai-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
Reference
이 문제에 관하여('npm install'에 작별을 고하세요. 'npm install'이 필요 없습니다. 'npm install'은 버리세요.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/lamianbu/say-goodbay-to-npm-install-no-need-npm-install-throw-away-npm-install-4hap텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)