https://github.com/os-js/osjs-gdrive-adapter
OS.js Google Drive VFS Adapter
https://github.com/os-js/osjs-gdrive-adapter
osjs osjs-adapter
Last synced: 7 months ago
JSON representation
OS.js Google Drive VFS Adapter
- Host: GitHub
- URL: https://github.com/os-js/osjs-gdrive-adapter
- Owner: os-js
- License: other
- Created: 2018-07-13T16:30:52.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-08-09T22:52:43.000Z (almost 4 years ago)
- Last Synced: 2025-06-20T16:43:04.635Z (12 months ago)
- Topics: osjs, osjs-adapter
- Language: JavaScript
- Homepage: https://manual.os-js.org/v3/
- Size: 9.77 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[OS.js](https://www.os-js.org/) is an [open-source](https://raw.githubusercontent.com/os-js/OS.js/master/LICENSE) web desktop platform with a window manager, application APIs, GUI toolkit, filesystem abstractions and much more.
[](https://www.patreon.com/user?u=2978551&ty=h&u=2978551)
[](https://opencollective.com/osjs)
[](https://liberapay.com/os-js/)
[](https://paypal.me/andersevenrud)
[](https://community.os-js.org/)
# OS.js Google Drive VFS Adapter
This is the Google Drive VFS (Client) Adapter for OS.js.
**This is not done and might damage your files!**
## Installation
```
npm install @osjs/gdrive-adapter @osjs/gapi-provider
```
## Usage
Requires `@osjs/gapi-provider` set up with the following configuration (see separate docs):
```
client: {
discoveryDocs: ['https://www.googleapis.com/discovery/v1/apis/drive/v3/rest'],
scope: ['https://www.googleapis.com/auth/drive']
}
```
In your client initialization script:
```
import gdriveAdapter from '@osjs/gdrive-adapter';
osjs.register(VFSServiceProvider, {
depends: ['osjs/gapi'],
args: {
adapters: {
gdrive: gdriveAdapter
}
}
});
```
Then create a mountpoint:
```
{
vfs: {
mountpoints: [{
name: 'gdrive',
label: 'Google Drive',
adapter: 'gdrive'
}]
}
}
```
## Contribution
* **Sponsor on [Github](https://github.com/sponsors/andersevenrud)**
* **Become a [Patreon](https://www.patreon.com/user?u=2978551&ty=h&u=2978551)**
* **Support on [Open Collective](https://opencollective.com/osjs)**
* [Contribution Guide](https://github.com/os-js/OS.js/blob/master/CONTRIBUTING.md)
## Documentation
See the [Official Manuals](https://manual.os-js.org/) for articles, tutorials and guides.
## Links
* [Official Chat](https://gitter.im/os-js/OS.js)
* [Community Forums and Announcements](https://community.os-js.org/)
* [Homepage](https://os-js.org/)
* [Twitter](https://twitter.com/osjsorg) ([author](https://twitter.com/andersevenrud))
* [Google+](https://plus.google.com/b/113399210633478618934/113399210633478618934)
* [Facebook](https://www.facebook.com/os.js.org)
* [Docker Hub](https://hub.docker.com/u/osjs/)