Building Applications on Serverless Cloud
With Serverless Cloud, you just write code. Backed by a fully-featured Node.js runtime with support for modern JavaScript and TypeScript right out of the box, you can build just about any application you can imagine. Import your favorite libraries, write your own custom functions, connect to third-party APIs and services, and even use familiar backend frameworks like Express.js and Koa.
You can supercharge your applications by using our Serverless Development Kit (SDK). The SDK provides several intuitive interfaces that let developers build modern, cloud native applications without ever thinking about infrastructure. The SDK was designed to be simple and familiar, maximizing your productivity by eliminating the need to learn new, complicated APIs.
Serverless Development Kit (SDK)
The Serverless Development Kit (SDK) includes interfaces for api
(to build modern APIs), schedule
(for creating scheduled tasks), data
(for accessing our powerful, built-in datastore), params
(for accessing application secrets), and http
(to bring your own framework).
The SDK is automatically available to your application and the interfaces can be selectively imported into your scripts like this:
import { api, data, params } from "@serverless/cloud";
Learn more about these SDK interfaces and how to use them:
- APIs
- Scheduled Tasks
- Serverless Data
- Serverless Storage
- Serverless Events
- Static Assets
- Parameters
- Bring Your Own Framework
- Frontend Development