The easiest way to identify anything
npm install jswhat
JSWhat
is a JavaScript version of the existing pyWhat. Built in TypeScript, this works in Node, the browser and the command line.
Have you ever come across a mysterious π§ββοΈ piece of text and wondered what it might be? Perhaps something like rBxwE6ivExFJjRPh5cZtpq1ghTDm6cV5YP
or 2001:0db8:85a3:0000:0000:8a2e:0370:7334
?
Well with what
all you have to do is ask via one of the three available methods and it will tell you! Simply feed what
one or more pieces of text and it will try to identify them.
what
s' job is to help you by identifing what something is.
You can view some examples here.
npm install jswhat --global
yarn global add jswhat
pnpm add jswhat --global
npm install jswhat
yarn add jswhat
pnpm add jswhat
<script src="https://unpkg.com/[email protected]/dist/index.js"></script>
Once installed globally, you will gain access to the what
command. You can use what --help
to see a basic help menu containing usage, option information and examples.
what <inputs> [options]
-h, --help Show this help message.
-v, --version Show the version number.
-s, --search Search within each input for more results.
--rarity Filter the results by rarity, one or two numbers from 0 and 1, searated by commas.
--filter Filter the results by name, short name, category, or tags, separated by commas.
--exclude Exclude the results by name, short name, category, or tags, separated by commas.
When wanting to identify some basic text, just type what <inputs>
and it will try to identify what it is, simple right? You can identify more than one piece of text at once, just separate them with spaces. If your input has spaces, you can use quotes to enclose it.
The node module is very simple to use, containing only a single method.
const what = require('jswhat');
// OR
import what from 'jswhat';
<what>.is(<inputs> [, options]);
<inputs> {string|string[]}
The text to be identified.[options.search] {boolean}
Search the inputs globally.[options.rarity] {[number, number]}
Filter the results by rarity.[options.filter] {string[]}
Names or tags to filter results by.[options.exclude] {string[]}
Names or tags to exclude from the results.
The above method returns an array containing objects in the format of:
{
"matched": string, // The content that was matched
"name": string, // Name of what was matched
"shortName": string, // A shorter name for what was matched
"category": string, // Category of the matched content
"tags": string[], // Tags for what was matched
"description": string | null, // Description of what was matched
"rarity": number | null, // A number between 0 and 1 representing the rarity
"url": string | null, // URL to potently more information
"regex": RegExp, // The RegExp that was used to match this
}
jsWhat
works in the exact same way in the browser as in Node.
<script src="https://unpkg.com/[email protected]/dist/index.js"></script>
View the Node section for usage and options.