Skip to main content

56 posts tagged with "serverless"

View All Tags

· 7 min read
Sönke Peters

When developing a website or web app, nobody wants to spend hours of their time just on speed optimization. The problem is that a fast website is incredibly important and performance is often a deciding factor for its success. Web frameworks like Remix Run were created with the goal of optimizing web performance while keeping their configuration to a minimum ("zero-config"). Nowadays, there are dozens of frameworks available, that help you achieve high speeds.

Unfortunately, the best website load times are of little use to us unless the databases of our apps are lightning fast as well.

· 3 min read
Burak Yılmaz

It has been some time since we released our very first version of Upstash Terraform Provider, which helped developers automate their Redis database management. Since then, we have worked on and advanced our products, even adding new ones to our arsenal!

Now, our provider v1.0.0 is publicly available in the terraform marketplace.

· 4 min read
Noah Fischer

Yesterday, Netlify announced a new feature called Netlify Graph. My colleague recently highlighted similar missing piece in the picture and Netlify made a good step towards a solution.

Basically Netlify Graph helps developers building GraphQL API calls for their web apps. After preparing GraphQL requests in Netlify Dashboard then you can inject the client code to your project with a single click.

· 3 min read
Adem Ilter

User feedback is important to guide product decisions. We built a widget to help you get feedback from your users. It is a React component which calls Next.js API as its backend. The backend API simply sends the feedback data to Upstash Redis database. Also, you will be able to see and manage the submitted data in Upstash Console Integrations Page

When you add the component to your Next.js page, an icon will be displayed on bottom right corner. When clicked, feedback form will be visible. Check the demo to see how it works.

· 9 min read
Enes Akar

Next.js enables developers to build full stack applications with the Server Side Rendering capability. Vercel and Netlify help them to write the backend API with serverless functions. So the next question is what is the ideal database for Next.js apps. In this post, I will review the databases which are popular among the Next.js community. I will comment on how they fit the serverless model. Two things to check:

  • Serverless pricing: Is the price pay-per-use? When the database is not in use, do you still have to pay?
  • Serverless connections: Is there support for HTTP based connections? So there should not be any connection problems which are common with serverless functions.