Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork10
rclone/rclone-js-api
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This is a javascript api to access therclone rc api.
If you are usingnpm,
npm install rclone-api --save
or usingyarn,
yarn install rclone-api
Import the required function
import{getAllProviders}from"rclone-api";
And then,
getAllProviders().then(res=>{//... do something with the data},error=>{//... do something with the error//eg: alert(error)});
OR
getAllProviders().then(res=>{//... do something with the data}).catch(error=>{//... do something with the error//eg: alert(error)});
getStats()
: returns the current rclone stats.getCurrentBandwidthSetting()
: fetches the current limit that is max which the rclone can send request at.setCurrentBandwidthSetting(newRate)
: changes the current bandwidth limit of the rclone backend.@param newRate {string} Human readable format of size eg: 1M|2M|1.2G specifying 1MB, 2MB, 1.2GB respectively.createPublicLink(remoteName, remotePath)
creates a public link for a supported remotegetAllProviders()
returns all the possible providers supported by the rclone backendgetAllConfigDump()
return the configured remotes from the rclone backendgetFsInfo(remoteName)
fetches the information regarding features, hashes from the rclone backend.getFilesList(remoteName, remotePath)
fetches the files for a specified remote path (remoteName + remotePath).getRemoteInfo(remoteName)
fetches the information about a provider.getRcloneVersion()
fetches the version and details about the running rclone version.getAllRemoteNames()
fetches all the remotes in the config.
About
rclone rc bindings for javascript
Resources
Security policy
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.
Contributors2
Uh oh!
There was an error while loading.Please reload this page.