johnayoung / feathers-cloudinary

A Feathers service for Cloudinary

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

feathers-cloudinary

Build Status Download Status

Unofficial Feathers plugin service for Cloudinary

Installation

npm install feathers-cloudinary --save

Documentation

TBD

Complete Example

Here's an example of a Feathers server that uses cloudinary.

const feathers = require("@feathersjs/feathers");

// Initialize the application
const app = feathers();

in upload.class.js:

/* eslint-disable no-unused-vars */
const { Upload } = require('feathers-cloudinary');

exports.Upload = Upload;

in upload.service.js:

// Initializes the `upload` service on path `/upload`
const { Upload } = require('./upload.class');
const hooks = require('./upload.hooks');

module.exports = function(app) {
  const options = {
    paginate: app.get('paginate'),
    cloud_name: process.env.CLOUDINARY_CLOUD_NAME,
    api_key: process.env.CLOUDINARY_API_KEY,
    api_secret: process.env.CLOUDINARY_API_SECRET,
  };

  // Initialize our service with any options it requires
  app.use('/upload', new Upload(options, app));

  // Get our initialized service so that we can register hooks
  const service = app.service('upload');

  service.hooks(hooks);
};

Contributing

Run npm run release:<type>

License

Copyright (c) 2018

Licensed under the MIT license.

About

A Feathers service for Cloudinary

License:MIT License


Languages

Language:JavaScript 100.0%