An open API service indexing awesome lists of open source software.

https://github.com/zakodium/adonis-datadrive

Extended drive provider for AdonisJs
https://github.com/zakodium/adonis-datadrive

Last synced: 5 months ago
JSON representation

Extended drive provider for AdonisJs

Awesome Lists containing this project

README

          

# Adonis DataDrive

Extended drive provider for AdonisJS 5.


Zakodium logo


Maintained by Zakodium

[![NPM version][npm-image]][npm-url]
[![build status][ci-image]][ci-url]
[![npm download][download-image]][download-url]

| :warning: This module is unstable and in active development. Use at your own risk. |
| ---------------------------------------------------------------------------------- |

## Installation

```console
npm i adonis-datadrive
node ace configure adonis-datadrive
```

## Usage

```js
import DataDrive from '@ioc:Zakodium/DataDrive';

const drive = DataDrive.use('myDrive');

// drive.put('myfile.txt', 'mycontent').then(...);
```

## Examples

### Upload file

```js
import { HttpContextContract } from '@ioc:Adonis/Core/HttpContext';

// Library importation
import DataDrive from '@ioc:Zakodium/DataDrive';

export default class FilesController {
public async upload({ request, params }: HttpContextContract) {
const { filename } = params;
request.multipart.onFile(filename, {}, async (file) => {
// Saves the file
await DataDrive.use('dir').put(filename, file);
});
await request.multipart.process();
return `${filename} uploaded`;
}
}
```

## License

[MIT](./LICENSE)

[npm-image]: https://img.shields.io/npm/v/adonis-datadrive.svg
[npm-url]: https://www.npmjs.com/package/adonis-datadrive
[ci-image]: https://github.com/zakodium/adonis-datadrive/workflows/Node.js%20CI/badge.svg?branch=main
[ci-url]: https://github.com/zakodium/adonis-datadrive/actions?query=workflow%3A%22Node.js+CI%22
[download-image]: https://img.shields.io/npm/dm/adonis-datadrive.svg
[download-url]: https://www.npmjs.com/package/adonis-datadrive