Socket
Socket
Sign inDemoInstall

any-downloader-vue

Package Overview
Dependencies
31
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    any-downloader-vue

Vue client for AnyDownloader API


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
4.90 MB
Created
Weekly downloads
 

Readme

Source

AnyDownloader web client

Vue based web interface for AnyDownloader API

Dependencies

Installation

npm i any-downloader-vue

Usage

<html>
    <head>
        <title>AnyDownloader</title>
        <link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
        <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.2/axios.min.js"></script>
        <script src="./node_modules/any-downloader-vue/dist/index.js"></script>
    </head>
    <body>
        <section>
            <div class="relative pb-12 pt-12 md:pt-12 bg-gray-900 border-b-4 border-green-600">
                <div class="container mx-auto px-4">
                    <div class="max-w-2xl mx-auto text-center md:mb-20">
                        <h1 class="text-4xl lg:text-5xl text-gray-50 font-bold">AnyDownloader</h1>
                        <div id="downloader" class="text-gray-50">
                            <any-downloader
                                input-placeholder="Put link here"
                                v-bind:api-url="'http://anydownloader.test/api/resource'"
                                btn-text="Download"
                            ></any-downloader>
                        </div>
                    </div>
                </div>
            </div>
        </section>
        <script type="module">
          import Vue from 'https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.esm.browser.js'
          Vue.component('AnyDownloader', AnyDownloader)
          const downloader = new Vue({
              el: '#downloader'
          });
        </script>
    </body>
</html>

iwannacode.net

Keywords

FAQs

Last updated on 03 Aug 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc