sharexgenerator

Custom ShareXGenerator Module

Usage no npm install needed!

<script type="module">
  import sharexgenerator from 'https://cdn.skypack.dev/sharexgenerator';
</script>

README

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.urlquot;
).then((result) => console.log(result));