Merge pull request #5425 from abumalick/patch-1

Updating services.md > Invoking Serverless locally
This commit is contained in:
Daniel Schep 2018-11-01 19:38:21 -04:00 committed by GitHub
commit 7325929be9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -197,5 +197,10 @@ To execute the locally installed Serverless executable you have to reference the
Example:
```
node ./node_modules/serverless/bin/serverless deploy
node node_modules/.bin/serverless deploy
```
Or with npx (bundled with npm >= 5.2.0)
```
npx serverless deploy
```