1.1.1 • Published 4 years ago

sharexgenerator v1.1.1

Weekly downloads
3
License
GPL-3.0-or-later
Repository
github
Last release
4 years ago

Custom ShareX Configuration Generator

ShareXGenerator

Very Easy To Use.

Add this module to your project and run it. It will create a folder with your desired chosen name, Then generate the configuration file in the .sxcu format in said folder.

Example Usage

/**
 * @package ShareX Generator Module Test Script
 * @version v1.1.1
 * @author CyberCDN
 * @copyright 2020
 * @license GPL-v3.0
 * @description Test script to ensure the ShareXGenerator works as intended.
 */

'use strict';
const ShareX = require("../index")
ShareX.generate(
    "ShareX-Configs",
    "FileTest",
    "https://test.com",
    "ImageUploader, FileUploader",
    "POST",
    "test",
    "Text",
    "$json:file.url$"
).then((result) => console.log(result));