Giter VIP home page Giter VIP logo

multer-cloudflare-storage's Introduction

multer-cloudflare-storage

GitHub npm CI workflows

๐Ÿ“ฅ Installation

You can install this package from NPM

  • npm install multer-cloudflare-storage
  • yarn add multer-cloudflare-storage

โšก Usage

import express, { Request, Response } from "express";
import multer from "multer";
import { CloudflareStorage } from "multer-cloudflare-storage";

const app = express();
const uploader = multer({
    storage: new CloudflareStorage("YOUR_CLOUDFLARE_ACCOUNT_ID_HERE", "YOUR_CLOUDFLARE_ACCOUNT_TOKEN_HERE")
});

app.post("/", uploader.single("image"), (req: Request, _res: Response) => {
    console.log(req.file);
    // {
    //     fieldname: 'image',
    //     originalname: 'PLACEHOLDER_IMAGE_NAME.jiff',
    //     encoding: '7bit',
    //     mimetype: 'application/octet-stream',
    //     path: 'https://imagedelivery.net/PLACEHOLDER_ACCOUNT_ID/PLACEHOLDER_IMAGE_ID/public',
    //     filename: null,
    //     destination: 'PLACEHOLDER_IMAGE_ID'
    // }
});

You can find a working example of an Express server with multer and this package here

โœ‹ Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

Please ensure any and all commits pass our tests, linting, and build steps as described in the root package.json.

โš–๏ธ LICENSE

Licensed under the MIT License

multer-cloudflare-storage's People

Contributors

zaida04 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

blkluv

multer-cloudflare-storage's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.