Serverless is a Node.js CLI tool so the first thing you need to do is to install Node.js on your machine.
Go to the official Node.js website, download and follow the installation instructions to install Node.js on your local machine.
Note: Serverless runs on Node v4 or higher.
You can verify that Node.js is installed successfully by running node --version
in your terminal. You should see the corresponding Node version number printed out.
Next, install the Serverless Framework via npm which was already installed when you installed Node.js.
Open up a terminal and type npm install -g serverless
to install Serverless.
npm install -g serverless
Once the installation process is done you can verify that Serverless is installed successfully by running the following command in your terminal:
serverless
To see which version of serverless you have installed run:
serverless --version
Now we need to install the provider plugin to allow the framework to deploy services to the platform. This plugin is also published on npm and can installed using the same npm install
command.
npm install -g serverless-openwhisk
Due to an outstanding issue with provider plugins, the OpenWhisk provider must be installed as a global module.
To run serverless commands that interface with the OpenWhisk platform, you will need to setup your OpenWhisk account credentials on your machine.
Follow these instructions on setting up OpenWhisk credentials