Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@aws-sdk/polly-request-presigner
Advanced tools
[![NPM version](https://img.shields.io/npm/v/@aws-sdk/polly-request-presigner/latest.svg)](https://www.npmjs.com/package/@aws-sdk/polly-request-presigner) [![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/polly-request-presigner.svg)](https://www.n
This package provides a presigner based on signature V4 that will attempt to generate signed url for polly audio.
Example Usage:
import { Polly, PollyClient } from "@aws-sdk/client-polly";
import { getSynthesizeSpeechUrl } from "@aws-sdk/polly-request-presigner";
const synthesizeSpeechParams = {
Text: "Hello world, the polly presigner is really cool!",
OutputFormat: "mp3",
VoiceId: "Kimberly",
};
// Synthesize with full polly.
(async () => {
let url = await getSynthesizeSpeechUrl({
client: new Polly({ region: "us-east-1" }),
params: synthesizeSpeechParams,
});
console.log(url);
})();
// Synthesize with polly client.
(async () => {
let url = await getSynthesizeSpeechUrl({
client: new PollyClient({ region: "us-east-1" }),
params: synthesizeSpeechParams,
});
console.log(url);
})();
FAQs
[![NPM version](https://img.shields.io/npm/v/@aws-sdk/polly-request-presigner/latest.svg)](https://www.npmjs.com/package/@aws-sdk/polly-request-presigner) [![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/polly-request-presigner.svg)](https://www.n
The npm package @aws-sdk/polly-request-presigner receives a total of 3,998 weekly downloads. As such, @aws-sdk/polly-request-presigner popularity was classified as popular.
We found that @aws-sdk/polly-request-presigner demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.