Serverless-chrome: Quick start guide not working?

Created on 16 Mar 2018  路  1Comment  路  Source: adieuadieu/serverless-chrome

I'm trying to follow the quick guide, I've done these steps:

  1. serverless create -u https://github.com/adieuadieu/serverless-chrome/tree/master/examples/serverless-framework/aws
  2. export AWS_PROFILE=serverless
  3. npm run deploy

However at point 3, I'm not in the right folder am I?

If I cd aws and the run npm run deploy I get an error:

Serverless Error ---------------------------------------

  Serverless plugin "serverless-plugin-chrome" not found. Make sure it's installed and listed in the "plugins" section of your serverless config file.

I must be doing something wrong?

Most helpful comment

OK I was missing npm install, so I think the full steps are:

  1. serverless create -u https://github.com/adieuadieu/serverless-chrome/tree/master/examples/serverless-framework/aws
  2. cd aws
  3. npm install
  4. export AWS_PROFILE=serverless
  5. npm run deploy

>All comments

OK I was missing npm install, so I think the full steps are:

  1. serverless create -u https://github.com/adieuadieu/serverless-chrome/tree/master/examples/serverless-framework/aws
  2. cd aws
  3. npm install
  4. export AWS_PROFILE=serverless
  5. npm run deploy
Was this page helpful?
0 / 5 - 0 ratings

Related issues

alekseykulikov picture alekseykulikov  路  4Comments

arnm picture arnm  路  5Comments

HanXHX picture HanXHX  路  5Comments

anzebra picture anzebra  路  5Comments

sepulworld picture sepulworld  路  10Comments