dropbox-client
dropbox-client is a client for the Dropbox API v2.
Installation
Using npm:
$ npm install --save dropbox-client
dropbox-client requires you to bring your own global fetch
function. isomorphic-fetch is a great polyfill.
Then, use as you would anything else:
import { getFile } from 'dropbox-client'
var getFile = require('dropbox-client').getFile
The UMD build is also available on npmcdn:
<script src="https://npmcdn.com/dropbox-client/umd/dropbox-client.min.js"></script>
You can find the library on window.DropboxClient
.