Socket
Socket
Sign inDemoInstall

base64-png-uploader

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

base64-png-uploader

A simple module to upload png files to different services from base64 encoded pic.


Version published
Maintainers
1
Created
Source

base64-png-uploader

Upload a base64 encoded png to S3 or file system. Other cloud storage services could be or not here soon ;) Very useful to use with Test Automation with Selenium to store screenshots taken.

Install

  npm install base64-png-uploader

Usage in S3

var uploader = require('base64-png-uploader');
// if you do not export AWS_ACCESS_KEY_ID and AWS_ACCESS_KEY_ID
uploader.awsCredentialsFromPath('path_to_JSON_FILE');
uploader.asS3('BUCKET_NAME');
uploader.store('FILE_NAME|PATH+FILE_NAME', 'BASE_64_ENCODED_PNG', function(error, data){})

For more information about credentials and aws-sdk click here. The callback function will be called from s3.putObject so you maybe want to check documentation.

Usage in filesystem

var uploader = require('base64-png-uploader');
// if you do not export AWS_ACCESS_KEY_ID and AWS_ACCESS_KEY_ID
uploader.store('FILE_NAME|PATH+FILE_NAME', 'BASE_64_ENCODED_PNG', function(error){})

The callback function will be called from fs.writeFile so you maybe want to check documentation.

Usage taking a snapshot with selenium

selenium.takeScreenshot()
.then((image, err) => {
  uploader.asS3('BUCKET_NAME').store('FILE_NAME.PNG', image, (err, data) => {
    //do whatever you want after image is saved
    }
  );
});

License

MIT

Keywords

FAQs

Package last updated on 21 Feb 2016

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

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