Taejung Heoblog.aqudi.me·an hour ago서버 부담 DOWN, 업로드 속도 UP: S3 Presigned Post로 이미지 업로드하기배경 이번에 회사에서 후기 서비스를 개발하고 있다. 요구사항 중에 후기에는 최대 5개의 사진이 포함된다는 항목이 있었다. API 서버를 Aws Lambda로 만들고 있어서 Api Gateway의 payload 크기 제한인 10MB, Lambda의 payload 크기 제한이 6MB로 이미지 업로드 크기에 제한이 생기는 문제가 있다. 참고: Amazon API Gateway 할당량 및 중요 정보, AWS Lambda 할당량 또한 Lambda로 ...AWS
Lunaram Suthargrahanam.hashnode.dev·Nov 30, 2023Seamless Image Handling: Uploading to Firebase Storage and Storing Image URLs in MongoDB Using Node.jsWelcome Coders! 💻️ In this guide, we'll utilize Firebase Storage to securely store images for our application while storing image URLs within our database model. Let's get started! 👍️ Prerequisites Basic knowledge of Node.js Installed Node.js and...Node.js
Ashutosh Chapagainashutoshchapagain.hashnode.dev·Oct 31, 2023Incorporating CKEditor 5 into a Flask applicationIn this blog, we will see how to integrate CKEditor 5 into a Flask application. CKEditor, which stands for 'Content-Kit Editor', is a JavaScript-rich open-source web-based text editor. It enables the users of a web application to easily format and ed...57 readsFlask Framework
Saurabh Chodvadiyasaurabhchodvadiya.hashnode.dev·Jul 25, 2023Building an Image Conversion and Serving API with FastAPIIntroduction: In this blog post, we will explore how to create a powerful FastAPI application that serves images and allows image conversion from base64-encoded data. By following this step-by-step guide, you will be able to set up a functional image...84 readsFastAPI
Nolan Nashnolan.hashnode.dev·Jul 19, 2023Image-in that!Introduction If you're like me, as you progress down the path of a software engineer, you often find yourself stuck, banging your head into the metaphorical wall that your code has become. So, you turn to the internet, blog posts, documentation, stac...1 like·51 readsReact
peter chendiapcode.hashnode.dev·Jul 5, 2023Storing images with Active Storage in RailsAre you struggling with uploading multiple images to your Rails application? Worry no more! In this article, I will guide you through the process of uploading multiple images to your Rails API application. Active storage Active storage makes it easy ...1 like·72 readsRails
Bojan Pericbojan.hashnode.dev·Jul 3, 2023Cloudinary image uploads with NextJs App RouterHi, I struggled to find an up to date article on this subject, so I decided to document how I solved this in one of my personal projects. Like in any modern web app, file uploads, in particular image uploads are a very common necessity. Cloudinary ke...Next.js
Idera Dev Toolsideradevtools.hashnode.dev·Jan 31, 2023How to Install and Use React Image UploadAre you struggling to handle image uploads in your React projects? Look no further! In this article, we will explore the world of “React image upload” and provide a comprehensive guide on handling image uploads efficiently. We understand that this ca...67 readsfilestack
Idera Dev Toolsideradevtools.hashnode.dev·Jan 6, 2023Image Transformation: Everything You Need to KnowSometimes, we must increase picture resolution or require a specific image transformation. These kinds of activities are possible by using image transformation techniques. We know that technology is making advancements daily, and image processing is ...1 like·161 readsfilestack
Deepakspdeepak.hashnode.dev·Aug 22, 2022Golang : gin tutorial - 4 (Create a multipart/form-data POST request)In the previous article we saw how exactly to create a POST request which consumes a request body. In this article we will see how to consume a multipart/form-data request using golang's gin-gonic and also how to write unit tests for it. Step 1 Creat...3.9K readsGolang : Create RESTful API using Golang's gin-gonicgolang