Skip to content

Latest commit

 

History

History
83 lines (68 loc) · 3.02 KB

index.md

File metadata and controls

83 lines (68 loc) · 3.02 KB
layout hero features
home
name text tagline actions
LambdaQueue
Documentation
Schedules and queues without infrastructure
theme text link
brand
Quick Start
/docs/quickstart
theme text link
alt
Client SDKs
/docs/sdk
theme text link
alt
Examples
/examples
theme text link
alt
API & Documentation
/docs/api
title details linkText link size
Send reminders
Notify user about upcoming event in your app a week, day or minutes before.
Show code
/examples/reminders
33%
title details linkText link
Implement delayed delete
Quickly implement a delete function with un-delete option using delayed queue.
Show code
/examples/delete
title details linkText link
Send monthly invoices
Schedule a task executed monthly to make sure you send out invoices to clients
Show code
/examples/invoices
title details linkText link
Execute periodic cleanups
Setup CRON jobs to call your API in predefined intervals
Show code
/examples/cleanup

Introduction

::: warning

‼️ Watch out! LambdaQueue is not released to general public yet. While we think most of the stuff you'll find here will be exactly the same in first official version, there are still missing documents and some small changes might show up. Click here to get in touch if you see something is missing or incorrect.

:::

LambdaQueue is a serverless platform to handle all your asynchronous jobs and schedules. With our SDKs you should be up and running in minutes, without any databases and backend services. On serverless, or on your self hosted backend.

Here is a quick sample of how your code might look like when using our SDKs.

::: code-group <<< @/code/express/src/basic.ts [Express.js] :::

Make sure to check out examples section for more real life examples and use-cases.

How to navigate the docs

Our documentation is split in few sections to help you navigate around. If you're just starting up you should probably visit it all in following order:

  • Quick Start - quickly get up to speed with a basic example
  • Examples - check out common use-cases and how you might implement them.
  • API & Docs - details about available options and APIs.

You might also want to check out overview section to get a grasp on how LambdaQueue ensures that only you can access your endpoints and data. How to encrypt your messages, so anyone else can't access them (not even our tech support). And how to decrypt them in our Admin UI on demand, when you're debugging your application.

You might also be interested in our Sandbox server, that you can use for development or to play with our SDKs.