빠른 NPM 설치 사용을 위해 YAML 위에 NPM 설치 구성.
2413 단어 developertoolsnpmyamlnode
빠른 NPM 설치 사용을 위해 YAML 위에 NPM 설치 구성.
See the documentation here on wiki also
목차
소개
빠른 NPM 설치 사용을 위해 YAML 위에 NPM 설치 구성.
구성 파일의 구조
# install dependencies (also we know as simple `npm install`)
dependencies:
# example
express: "latest"
# install devdependencies (also we know as `npm install -D` which contains package for development and build our bundle)
devDependencies:
# install global dependencies (also we know as `npm install -g`)
global:
샘플 구성 파일을 초기화하는 방법
예를 들어 다음과 같이 할 수 있습니다.
npx npm-fast-installer init pre-commit-installation
구성 파일을 실행하는 방법
예를 들어 다음과 같이 할 수 있습니다.
npx npm-fast-installer ./pre-commit-installation.yml
폐쇄
예를 들어 dart의 pubspec_yaml과 같은 멋진 주석으로 nodejs 패키지를 관리하려는 경우 일부 패키지를 조사하고 더 이상 하나씩 설치할 필요가 없습니다. 기존 예제와 같이 npx로 간단하게 실행되는 이 패키지를 사용해 볼 수 있습니다!
Reference
이 문제에 관하여(빠른 NPM 설치 사용을 위해 YAML 위에 NPM 설치 구성.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/fzn0x/npm-install-configuration-in-top-of-yaml-for-fast-npm-install-usage-14l텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)