priyansh-ig-downloader 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +28 -0
  2. package/package.json +67 -0
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ ## Instalation :
2
+ ```bash
3
+ > npm i --save priyansh-ig-downloader
4
+ ```
5
+
6
+ ## Example
7
+ ```js
8
+ const instagramGetUrl = require("priyansh-ig-downloader")
9
+ async function downloadMedia() {
10
+ try {
11
+ const download = await instagramGetUrl("https://www.instagram.com/tv/CdmYaq3LAYo/");
12
+ console.log(download);
13
+ } catch (error) {
14
+ console.error(error);
15
+ }
16
+ }
17
+
18
+ downloadMedia();
19
+ ```
20
+ ## Output Example
21
+ ```
22
+ {
23
+ results_number : 1,
24
+ url_list : [
25
+ 'https://scontent.cdninstagram.com/v/t50.2886-16/281176759_330829732466343_6214175692160325206_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_cat=103&_nc_ohc=tsiSkUxDxfEAX-u8MmX&edm=AJBgZrYBAAAA&ccb=7-5&oe=62D43703&oh=00_AT-8ndeJFByZE0H6IqNwZasKMBfaqXRiwGoFL1tR_RSflA&_nc_sid=78c662'
26
+ ]
27
+ }
28
+ ```
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+
2
+ {
3
+ "name": "priyansh-ig-downloader",
4
+ "version": "0.0.1",
5
+ "main": "dist/bundle.js",
6
+ "scripts": {
7
+ "build": "rollup --config",
8
+ "test": "node ./test/test.js"
9
+ },
10
+ "keywords": [
11
+ "Instagram",
12
+ "Downloader",
13
+ "Download",
14
+ "Media",
15
+ "link",
16
+ "Photo",
17
+ "Video",
18
+ "Videos",
19
+ "Url",
20
+ "Picture",
21
+ "image",
22
+ "Images",
23
+ "download",
24
+ "insta",
25
+ "Stories",
26
+ "Node.js",
27
+ "Instagram API",
28
+ "Social Media",
29
+ "Media Downloader",
30
+ "Instagram Downloader",
31
+ "JavaScript",
32
+ "API Integration",
33
+ "IG Media Download",
34
+ "Social Media Tools"
35
+ ],
36
+ "author": "Priyansh Rajput",
37
+ "license": "MIT",
38
+ "description": "This Node.js package provides a simple and efficient way to download media from Instagram. Whether you need to download images, videos, or stories, this package makes it easy with minimal setup. Designed for developers, this package supports various media formats and ensures quick downloads, making it perfect for both personal use and larger projects. With straightforward API calls, you can integrate Instagram media downloading functionality into your applications effortlessly.",
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "git+https://github.com/priyanshu192/priyansh-ig-downloader.git"
42
+ },
43
+ "bugs": {
44
+ "url": "https://github.com/priyanshu192/priyansh-ig-downloader/issues"
45
+ },
46
+ "homepage": "https://github.com/priyanshu192/priyansh-ig-downloader#readme",
47
+ "dependencies": {
48
+ "crypto-js": "^4.2.0"
49
+ },
50
+ "devDependencies": {
51
+ "rollup": "^4.18.0"
52
+ },
53
+ "files": [
54
+ "README.md",
55
+ "LICENSE"
56
+ ],
57
+ "engines": {
58
+ "node": ">=14.0.0"
59
+ },
60
+ "private": false,
61
+ "directories": {
62
+ "test": "test"
63
+ },
64
+ "publishConfig": {
65
+ "access": "public"
66
+ }
67
+ }