简体   繁体   中英

Google Cloud Function NPM

I am trying to use a google cloud function to turn a 3d model into an image. My function won't deploy. I have tried to use ypm install and npm install in the package file.

Deployment failure:

Build failed: npm ERR! code EJSONPARSE
     npm ERR! file /workspace/package.json
     npm ERR! JSON.parse Failed to parse json`
     npm ERR! JSON.parse Unexpected token n in JSON at position 120 while parsing near '...rage": " 
     ^1.6.0"
     npm ERR! JSON.parse npm install"craster"...'
     npm ERR! JSON.parse Failed to parse package.json data.
     npm ERR! JSON.parse package.json must be actual JSON, not just JavaScript.

Package.json is

{
  "name": "sample-cloud-storage",
  "version": "0.0.1",
  "dependencies": {
    "@google-cloud/storage": "^1.6.0"
    npm install"craster": "^3.1.5"
  }
}

Not sure why you have npm install where it is. Should look like

{
   "name":"sample-cloud-storage",
   "version":"0.0.1",
   "dependencies":{
      "@google-cloud/storage":"^1.6.0",
      "craster":"^3.1.5"
   }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM