New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

simpleyt

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simpleyt - npm Package Compare versions

Comparing version 1.0.8 to 1.0.9

1

index.d.ts

@@ -28,2 +28,3 @@ import {Options} from "miniget"

isStream: boolean,
count?: number,
thumbnails: Thumbnail[]

@@ -30,0 +31,0 @@ }

2

package.json

@@ -20,3 +20,3 @@ {

"description": "Simple youtube search library without need of an api key",
"version": "1.0.8",
"version": "1.0.9",
"dependencies": {

@@ -23,0 +23,0 @@ "miniget": "^4.2.1"

@@ -43,3 +43,9 @@ # simpleYT

isStream: false,
thumbnails: [ [Object], [Object], [Object], [Object] ]
thumbnails: [
{
url: 'https://i.ytimg.com/vi/nPuHl_Hl2xI/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDtSUSrI3HJLkr-7mEnNfVYjVVLqQ',
width: 480,
height: 270
}
]
},

@@ -57,3 +63,14 @@ ...

count: 1000,
thumbnails: [ [Object], [Object], [Object], [Object], [Object] ]
thumbnails: [
{
url: 'https://i.ytimg.com/vi/WhmlNt42pjk/hqdefault.jpg?sqp=-oaymwEWCKgBEF5IWvKriqkDCQgBFQAAiEIYAQ==&rs=AOn4CLCG_urfC1u0JDVyJYBQd3tJ7Tb0kQ',
width: 168,
height: 94
},
{
url: 'https://i.ytimg.com/vi/0aG4E5jJKtQ/default.jpg',
width: 43,
height: 20
}
]
},

@@ -63,6 +80,3 @@ ...

```
## Try our API
You can try this library on our API (thanks to shilu)
`https://ytapi.cf/search/{Query}`

@@ -61,5 +61,5 @@ const miniget = require('miniget')

count: Number(data['videoCount']),
thumbnails: data['thumbnails']
thumbnails: data['thumbnails'].map(video => video.thumbnails[0])
}
})
}
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