Vue를 설치하다가 packages are looking for funding 라는 메시지가 뜨면서 npm install이 설치하는 문제가 발생할 경우가 있습니다.
npm WARN deprecated vue-cli@2.9.6: This package has been deprecated in favour of
@vue/cli
npm WARN saveError ENOENT: no such file or directory, open 'C:\Users\AyoteraLab\package
.json'
npm WARN enoent ENOENT: no such file or directory, open 'C:\Users\AyoteraLab\package.js
on'
npm WARN AyoteraLab No description
npm WARN AyoteraLab No repository field.
npm WARN AyoteraLab No README data
npm WARN AyoteraLab No license field.
+ global@4.4.0
+ vue-cli@2.9.6
updated 2 packages and audited 376 packages in 1.962s
7 packages are looking for funding
run `npm fund` for details
found 0 vulnerabilities
이런 상태에서는 더이상 진행이 불가능 합니다. details를 위해서는 run 'npm fund' for details를 해보라고 하니... 실제로 해보겠습니다. 과연 무슨 메시지가 뜨는지...
+-- https://github.com/sponsors/ljharb
| `-- is-object@1.0.2
+-- https://github.com/sponsors/feross
| `-- safe-buffer@5.2.1, buffer@5.7.1, base64-js@1.5.1, ieee754@1.2.1
+-- https://www.patreon.com/feross
| `-- safe-buffer@5.2.1, buffer@5.7.1, base64-js@1.5.1, ieee754@1.2.1
+-- https://feross.org/support
| `-- safe-buffer@5.2.1, buffer@5.7.1, base64-js@1.5.1, ieee754@1.2.1
+-- https://github.com/sponsors/epoberezkin
| `-- ajv@6.12.6
`-- https://github.com/sponsors/isaacs
`-- glob@7.1.6
음... 진짜로 sponsors에 대한 내용이네요... 진짜 펀딩이 필요한건가...ㅠㅠ 그렇다면... 해당 과정을 패스하도록 명령을 수행해 보겠습니다.
npm install --no-fund
npm WARN saveError ENOENT: no such file or directory, open 'C:\Users\AyoteraLab\package
.json'
npm WARN enoent ENOENT: no such file or directory, open 'C:\Users\AyoteraLab\package.js
on'
npm WARN AyoteraLab No description
npm WARN AyoteraLab No repository field.
npm WARN AyoteraLab No README data
npm WARN AyoteraLab No license field.
audited 376 packages in 1.593s
found 0 vulnerabilities
뭔가 된거 같네요~~?? 그럼 동일하게 vue.js를 설치해 보겠습니다.
C:\Users\AyoteraLab>npm install vue-cli -global
npm WARN deprecated vue-cli@2.9.6: This package has been deprecated in favour of
@vue/cli
npm WARN deprecated request@2.88.2: request has been deprecated, see https://git
hub.com/request/request/issues/3142
npm WARN deprecated coffee-script@1.12.7: CoffeeScript on NPM has moved to "coff
eescript" (no hyphen)
npm WARN deprecated har-validator@5.1.5: this library is no longer supported
C:\Users\AyoteraLab\AppData\Roaming\npm\vue -> C:\Users\AyoteraLab\AppData\Roaming\npm\node_mo
dules\vue-cli\bin\vue
C:\Users\AyoteraLab\AppData\Roaming\npm\vue-init -> C:\Users\AyoteraLab\AppData\Roaming\npm\no
de_modules\vue-cli\bin\vue-init
C:\Users\AyoteraLab\AppData\Roaming\npm\vue-list -> C:\Users\AyoteraLab\AppData\Roaming\npm\no
de_modules\vue-cli\bin\vue-list
+ vue-cli@2.9.6
added 236 packages from 204 contributors in 9.319s
C:\Users\AyoteraLab>vue -V
2.9.6
짜쟌... 정상적으로 동작하네요~~~
- Ayotera Lab -
댓글