Home > OS >  I am trying to install puppeteer in the VSC terminal funding
I am trying to install puppeteer in the VSC terminal funding

Time:02-27

I am trying to install puppeteer in the VSC terminal, but whenever i run the install in npm, it does not download and says something needs funding. Help!!

npm i puppeteer

up to date, audited 67 packages in 5s

8 packages are looking for funding
  run `npm fund` for details

found 0 vulnerabilities

CodePudding user response:

Your puppeteer package and node_modules are already downloaded.
You can test it by simply run this inside node console:

C:\> node

    Welcome to Node.js v16.14.0.
    Type ".help" for more information.

> const puppeteer = require('puppeteer')
    undefined
> puppeteer
    PuppeteerNode {
      _changedProduct: false,
      _isPuppeteerCore: false,
      _projectRoot: 'C:\Users\username\NodeJS\pptrdev\',
      __productName: undefined,
      _preferredRevision: '961656'
    }
> .exit

If you means .JSON file, then probably referring to the packages.json.

CodePudding user response:

Looks fine, that's just for supporting peoples projects I believe!

  • Related