Anthony Chu 🦋 @anthonychu.ca Profile picture
Jun 21, 2022 4 tweets 3 min read
A couple of small but useful improvements in Node.js @AzureFunctions and @AzureStaticApps have shipped!

📝 Built-in parsing of multipart form data
🪪 Easily access authenticated user details

Here's how they work... 🧵 It's common for web apps (esp @AzureStaticApps) to post data from a form. There's now a parseFormBody() method on the @AzureFunctions request. Use it to access multipart form data, including files. Here's an example that uploads a file to blob storage. const { BlobServiceClient }...