You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@aws-sdk/util-utf8-browser

Package Overview
Dependencies
Maintainers
5
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/util-utf8-browser

A browser UTF-8 string <-> UInt8Array converter


Version published
Weekly downloads
7.7M
decreased by-18.91%
Maintainers
5
Install size
93.9 kB
Created
Weekly downloads
 

Package description

What is @aws-sdk/util-utf8-browser?

The @aws-sdk/util-utf8-browser package is designed for encoding and decoding UTF-8 content in web browsers. It provides utilities to convert between string data and Uint8Array binary format, facilitating the handling of text data in web applications that interact with AWS services or any other use cases requiring UTF-8 encoding/decoding.

What are @aws-sdk/util-utf8-browser's main functionalities?

UTF-8 Encoding

This feature allows you to encode a JavaScript string into a Uint8Array using UTF-8 encoding. It's useful for preparing text data for binary-safe transmission or storage.

const { fromUtf8 } = require('@aws-sdk/util-utf8-browser');
const encodedData = fromUtf8('Hello, world!');

UTF-8 Decoding

This feature enables the decoding of a Uint8Array binary data back into a JavaScript string using UTF-8 decoding. It's essential for converting received binary data into a human-readable format.

const { toUtf8 } = require('@aws-sdk/util-utf8-browser');
const decodedString = toUtf8(new Uint8Array([72, 101, 108, 108, 111]));

Other packages similar to @aws-sdk/util-utf8-browser

Changelog

Source

3.259.0 (2023-01-26)

Bug Fixes

  • middleware-flexible-checksums: append content-encoding aws-chunked instead of replacing (#4368) (dac8a92)
  • package.json: build util-utf8-browser in build:crypto-dependencies (#4374) (405e881)
  • types: changed NodeJS.ProcessEnv type to Record in node-config-provider (#4319) (872fe07)

Features

  • client-eventbridge: Minor comments for Redshift Serverless workgroup target support. (5e5f4b2)
  • client-iotfleetwise: Add model validation to BatchCreateVehicle and BatchUpdateVehicle operations that invalidate requests with an empty vehicles list. (1d7f650)
  • client-s3: Allow FIPS to be used with path-style URLs. (e41ba91)
  • clients: update client endpoints as of 2023-01-26 (cdf78f7)

Readme

Source

@aws-sdk/util-utf8-browser

NPM version NPM downloads

Deprecated package

This internal package is deprecated in favor of @aws-sdk/util-utf8.

FAQs

Package last updated on 26 Jan 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc