The Serverless Platform is currently in experimental beta. If you'd like to participate in the beta, simply follow the instructions below.
Make sure you have Node.js installed and run:
$ npm i serverless -gThen, check the version to make sure you are using V1.20.0, or later:
$ serverless -vFirst, register or log in to the Serverless platform in via the CLI
$ serverless loginAfter logging into the platform via the Serverless framework CLI every deploy will be published privately to the Serverless Platform. It allows you to view and share your deployed services.
Give it a try with a new service, or an existing service:
$ serverless deployThen visit https://platform.serverless.com/ in your browser.
Note: You can toggle auto-publishing by adding the publish config in serverless.yml:
service:
name: my-service
publish: false # disable auto-publishingLogging in to the platform enables access to beta features of the Serverless framework.
Start local development mode for a Serverless service. This mode downloads and installs the event-gateway and the serverless emulator. Both of these are used to emulate a serverless service and develop against them locally.
Emit an event to an event-gateway.
Register or log in to the platform.
Logout of the platform.