Serverless is a Node.js CLI tool so the first thing you need to do is to install Node.js on your machine.
Note: The Azure Functions Serverless Framework plugin requires Node v6.5.0
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 i -g serverless
to install Serverless.
npm i -g serverless
Once the installation process is done you can verify that Serverless is installed successfully by running the following command in your terminal:
sls
To see which version of serverless you have installed run:
sls --version
To install, install the latest package from npm, run:
npm i --save serverless-azure-functions
To run serverless commands that interface with the Azure platform, you will need to set up your Azure subscription credentials on your machine.
Follow these instructions on setting up Azure subscription credentials
Product