Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-edge-tts

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-edge-tts - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "node-edge-tts",
"version": "1.0.0",
"version": "1.0.1",
"description": "node-edge-tts is a module that using Microsoft Edge's online TTS (Text-to-Speech) service on the Node.js",

@@ -5,0 +5,0 @@ "keywords": [

const { randomBytes } = require('node:crypto')
const fs = require('node:fs')
const { writeFileSync, createWriteStream } = require('node:fs')
const { WebSocket } = require('ws')

@@ -81,3 +81,3 @@ const { HttpsProxyAgent } = require('https-proxy-agent')

})
fs.writeFileSync(subPath, JSON.stringify(subFile, null, ' '), { encoding: 'utf-8' })
writeFileSync(subPath, JSON.stringify(subFile, null, ' '), { encoding: 'utf-8' })
}

@@ -88,3 +88,3 @@

return await new Promise((resolve, reject) => {
let audioStream = fs.createWriteStream(audioPath)
let audioStream = createWriteStream(audioPath)
let subFile = []

@@ -91,0 +91,0 @@ _wsConnect.on('message', async (data, isBinary) => {

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc