🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

adonis-datadrive

Package Overview
Dependencies
Maintainers
4
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adonis-datadrive

Extended drive provider for AdonisJs

0.5.1
latest
Source
npm
Version published
Weekly downloads
0
Maintainers
4
Weekly downloads
 
Created
Source

Adonis DataDrive

Extended drive provider for AdonisJS 5.

Zakodium logo

Maintained by Zakodium

NPM version build status npm download

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

Installation

npm i adonis-datadrive
node ace configure adonis-datadrive

Usage

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

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

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

Examples

Upload file

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

Keywords

adonisjs

FAQs

Package last updated on 24 Sep 2021

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