mozuku

1.0.7 • Public • Published

mozuku

A simple and easy lightshot screen capture generator/validator. 🚀

Installation

npm i mozuku or yarn add mozuku

Usage

  • Generate a new screenshot
const mozuku = require('mozuku');

mozuku.random().then(console.log);
//{
//  id: '3178e6876f9942a39edffe99ca3338f4', <= Returns undefined if not found
//  shortId: 'cg73mq',
//  isValid: true,
//  link: 'https://image.prntscr.com/image/3178e6876f9942a39edffe99ca3338f4.png',
//  shortLink: 'https://prnt.sc/cg73mq'
//}
  • Validate a screenshot
const mozuku = require('mozuku');

const printID = 'cg73mq';

mozuku.validate(printID).then(console.log);
//{
//  id: '3178e6876f9942a39edffe99ca3338f4',
//  shortId: 'cg73mq',
//  isValid: true, <= Returns false if image not exists
//  link: 'https://image.prntscr.com/image/3178e6876f9942a39edffe99ca3338f4.png',
//  shortLink: 'https://prnt.sc/cg73mq'
//}
  • Generate a random ID
const mozuku = require('mozuku');

mozuku.genRandomId(6);
//  cg73mq

Package Sidebar

Install

npm i mozuku

Weekly Downloads

9

Version

1.0.7

License

MIT

Unpacked Size

7.41 kB

Total Files

5

Last publish

Collaborators

  • miguel5g