New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cloudinary-push

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cloudinary-push - npm Package Compare versions

Comparing version 1.1.5 to 1.1.6

5

db.js
const fs = require('fs');
const path = require('path');
module.exports.getConfig = function () {
const config = JSON.parse(fs.readFileSync('./db.json'));
const config = JSON.parse(fs.readFileSync(path.join(__dirname, './db.json')));
return config;

@@ -9,3 +10,3 @@ }

module.exports.storeConfig = function(config){
fs.writeFileSync('./db.json', JSON.stringify(config));
fs.writeFileSync(path.join(__dirname, './db.json'), JSON.stringify(config));
}

@@ -12,0 +13,0 @@

2

package.json
{
"name": "cloudinary-push",
"version": "1.1.5",
"version": "1.1.6",
"repository": {

@@ -5,0 +5,0 @@ "type": "git",

@@ -1,2 +0,2 @@

## coudinary-push
## cloudinary-push

@@ -3,0 +3,0 @@ Cloudinary command line tool to upload images to cloudinary cdn from terminal. Currently only image upload is supported, feel free to contibute.

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc