npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

anton-uploader

v1.0.5

Published

Anton Uploader: A powerful module designed for seamless photo uploads to multiple platforms, enabling users to effortlessly obtain URL links for their images. Elevate your image-sharing experience with this versatile tool that connects you to various host

Downloads

373

Readme

report bug

Report bug

anton-uploader

NPM Version

anton-uploader adalah aplikasi yang dirancang untuk memudahkan pengguna dalam mengunggah file gambar ke berbagai platform hosting gambar. Dengan mendukung beberapa layanan hosting populer, aplikasi ini memungkinkan pengguna untuk memilih platform mana yang akan digunakan untuk mengunggah gambar mereka.

Layanan yang Didukung

Aplikasi ini mendukung beberapa layanan hosting gambar, yaitu:

  1. Imgur
    Imgur adalah platform hosting gambar yang populer dan banyak digunakan. Aplikasi Anda mendukung proses upload gambar ke Imgur dan mengembalikan URL dari gambar yang berhasil diunggah.

  2. Uguu.se
    Uguu adalah layanan hosting file sederhana yang memungkinkan pengguna untuk mengunggah file sementara dengan cepat. File akan disimpan sementara sesuai dengan kebijakan layanan mereka.

  3. Cloudinary
    Cloudinary adalah layanan cloud yang menyediakan hosting gambar dan media secara canggih, dilengkapi dengan fitur manajemen gambar. Project Anda memanfaatkan API Cloudinary untuk mengunggah dan menyimpan gambar di cloud dengan cepat dan efisien.

  4. Pomf2
    Pomf2 adalah layanan hosting file yang memungkinkan pengguna untuk mengunggah file dengan mudah. Project Anda mendukung pengunggahan gambar ke Pomf2 dan mengembalikan URL dari gambar yang berhasil diunggah.

  5. lurkmore

    Fungsi uploadlurkmore adalah metode yang dirancang untuk mengunggah file gambar ke platform Lurkmore. Dengan menggunakan API Lurkmore, fungsi ini memungkinkan pengguna untuk meng-upload file dengan cepat dan mendapatkan URL dari gambar yang berhasil diunggah.

  6. Wedipe Upload

    Wedipe Upload adalah layanan hosting file yang memungkinkan pengguna untuk mengunggah file gambar dengan mudah dan cepat. Aplikasi Anda mendukung upload ke Wedipe, yang kemudian mengembalikan URL dari gambar yang berhasil diunggah. Wedipe cocok untuk pengguna yang membutuhkan solusi upload sederhana dengan URL langsung yang dapat digunakan untuk berbagi gambar.

install module

  • Untuk menginstal paket ini, gunakan npm dengan perintah berikut:
npm install anton-uploader

Contoh Pengguna

const anton = require("anton-uploader");

(async () => {
    const filePath = 'media.jpg';

    // Mengupload ke Imgur
    const imgurResult = await anton.Imgur(filePath);
    console.log('Hasil upload ke Imgur:', imgurResult);

    // Mengupload ke File Ugu
    const fileUguResult = await anton.FileUgu(filePath);
    console.log('Hasil upload ke File Ugu:', fileUguResult);

    // Mengupload ke Cloudinary
    const cloudinaryResult = await anton.Cloudinary(filePath);
    console.log('Hasil upload ke Cloudinary:', cloudinaryResult);

    // Mengupload ke Pomf2
    const pomf2Result = await anton.Pomf2(filePath);
    console.log('Hasil upload ke Pomf2:', pomf2Result);

    // Mengupload ke Lurkmore
    const lurkmoreResult = await anton.Lurkmore(filePath);
    console.log('Hasil upload ke Lurkmore:', lurkmoreResult);
    
    // Mengupload ke wedipe upload
    const wedipeResult = await anton.wedipe(filePath);
    console.log('Hasil upload ke wedipeResult:', wedipeResult);
})();