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

@juliendu11/uptoboxapi

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@juliendu11/uptoboxapi

Node module for use UptoboxAPI

  • 0.2.0
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Node JS uptobox API

Upload file with node JS

Install

npm i @juliendu11/uptoboxapi

How to use ?

Only one file

  const uptoboxAPI = require('@juliendu11/uptoboxapi');
  (async () => {
    let value = await uptoboxAPI.uploadOneFile('{TOKEN}','{FILE}')
     console.log(value)
//{
//   name: 'filename',
//   size: filesize,
//   url: 'https://uptobox.com/rieo9f88dudx',
//   deleteUrl: 'https://uptobox.com/rieo9f88dudx?killcode=6gep5zig3g'
// }
})();

Multiple files in same times

  const uptoboxAPI = require('@juliendu11/uptoboxapi');
  (async () => {
     const filesPath =[
        './package.json',
        './package-lock.json'
    ]
    let value = await uptoboxAPI.uploadMutlipleFiles('{TOKEN}',filesPath)
    console.log(value)
})();

Dependencies

  • form-data
  • axios

Keywords

FAQs

Package last updated on 22 Apr 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc