![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@serverless-queue/nodejs
Advanced tools
A Node.js client for working with ServerlessQueue. Use this only if there isn't a premade adapter for the framework you are using.
npm install --save @serverless-queue/nodejs
import Client from "@serverless-queue/nodejs"
const client = new Client("secret token here")
// this will be useful for viewing analytics about your jobs
const queueName = "anything/you/want"
// the data your job needs to operate, can be any javascript object
const jobPayload = { key: value }
// the callback url to use to handle the job
const callbackUrl = "https://www.yoursite.com/api/queues/queue-name"
await client.enqueue({ queueName, jobPayload, callbackUrl })
// depending on the framework you are using this will be different
// but you'll need some way to receive incoming requests to a specific endpoint
app.post('/api/queues/queue-name', (req, res) => {
const webhookSignature = req.headers['sq-webhook-signature']
const entryId = req.headers['sq-entry-id']
const rawPayload = req.body
// verify the request is coming from serverlessqueue.com
const jobPayload = client.verifyAndDecrypt(rawPayload, webhookSignature)
if(!jobPayload) {
res.status(401).json("{error: 'invalid signature'}")
return
}
// setup a heartbeat so we know you are still working on the job
// 30 seconds is a good amount of time as we assume failure after 1 minute
// each heartbeat extends the life of the job for another minute
const heartbeat = setInterval(async () => {
await client.heartbeat(entryId)
}, 30000)
// actually do the job using data in jobPayload
// acknowledge that the job was succesfully completed so we do not retry
client.ack(entryId)
// stop the heartbeat
clearInterval(heartbeat)
res.status(200).end()
})
Serverless Queue 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 SERVERLESS_QUEUE_ENCRYPTION_KEY
and the client library will automatically encrypt and decrypt the payload using this key.
FAQs
A Node.js client for working with serverlessqueue.com
The npm package @serverless-queue/nodejs receives a total of 2 weekly downloads. As such, @serverless-queue/nodejs popularity was classified as not popular.
We found that @serverless-queue/nodejs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.