v6.5.0
or later.v1.9.0
or later. You can run
npm install -g serverless
to install it.$ npm install --global serverless serverless-openwhisk
Create a new service using the Node.js template, specifying a unique name and an optional path for your service.
# Create a new Serverless Service/Project
$ serverless create --template openwhisk-nodejs --path my-service
# Change into the newly created directory
$ cd my-service
# Install npm dependencies
$ npm install
Using a self-hosted version of the platform?
Ensure you set the ignore_certs
option in the serverless.yaml
prior to deployment.
provider:
name: openwhisk
ignore_certs: true
Use this when you have made changes to your Functions, Events or Resources in serverless.yml
or you simply want to deploy all changes within your Service at the same time.
serverless deploy -v
Use this to quickly upload and overwrite your function code, allowing you to develop faster.
serverless deploy function -f hello
Invokes the Function and returns results.
serverless invoke --function hello
# results
{
"payload": "Hello, World!"
}
serverless invoke --function hello --data '{"name": "OpenWhisk"}'
#results
{
"payload": "Hello, OpenWhisk!"
}
Open up a separate tab in your console and stream all logs for a specific Function using this command.
serverless logs -f hello -t
If at any point, you no longer need your service, you can run the following command to remove the Functions, Events and Resources that were created, and ensure that you don't incur any unexpected charges.
serverless remove
Check out the Serverless Framework Guide for more information.
Product