DinoChiesa / ApigeeEdge-JWT-Demonstration

Apache License 2.0
10 stars 11 forks source link

Is 'apigee-edge-js' missing? #3

Closed Lassesen closed 6 years ago

Lassesen commented 6 years ago

I attempted to execute

node ./tools/importAndDeploy -v -o ${ORG} -e ${ENV} -d ./proxy-bundles/jwt-verify node ./tools/importAndDeploy -v -o ${ORG} -e ${ENV} -d ./proxy-bundles/jwt-verify-goog node ./tools/importAndDeploy -v -o ${ORG} -e ${ENV} -d ./proxy-bundles/jwt-generate

and get Cannot find module 'apigee-edge-js'

DinoChiesa commented 6 years ago

So sorry! That apigee-edge-js thing is a node module. To get it you must

cd tools
npm install
cd ..

Then you can

node ./tools/importAndDeploy -v -o ${ORG} -e ${ENV} -d ./proxy-bundles/jwt-verify

and etc.

I will update the README to state that. thanks for the feedback.

DinoChiesa commented 6 years ago

Fixed.