1.0.12 • Published 3 years ago

@serverlesshq/nextjs v1.0.12

Weekly downloads
79
License
ISC
Repository
github
Last release
3 years ago

@serverlesshq/nextjs

The easiest way to integrate ServerlessHQ with your Next.Js project.

Getting Started

  1. Create a free ServerlessHQ account and save your token as an environment variable called SHQ_TOKEN in your .env.local file
SHQ_TOKEN=your_token_here
  1. Add this library to your project
npm install --save @serverlesshq/nextjs
  1. Create your first queue by creating a new api route and defining the worker function
// pages/api/queues/example.js
import { Queue } from "@serverlesshq/nextjs"

export default Queue(
    "queues/example",
    async (job) => {
        // implement the background job here
    }
)
  1. Enqueue a job by importing your new queue and calling .enqueue on it with the payload needed to complete the job
// pages/api/example.js
import exampleQueue from "./queues/example"

export default async (req, res) => {
    // handle logic that can be completed as part of the request

    // enqueue a job to complete work 
    // that should be completed asynchronously after the request
    await exampleQueue.enqueue({ field: "value" })
}

End-to-End Encryption

ServerlessHQ supports encrypting the job payload data so that our servers never have access to potentially sensitive information. To enable this feature simply set a 32 character encryption key using the environment variable SHQ_ENCRYPTION_KEY and the client library will automatically encrypt and decrypt the payload using this key.

1.0.12

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.3

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago