npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

basic-toolsjs

v2.1.0

Published

Any basic tool that you need is here of course. You wont need StackOverflow anymore!

Downloads

26

Readme

logo

Basic-ToolsJS

  • Math - anything from subtract to multiply.

  • Random - random strings, random integers, etc.

  • Currency.

  • Checks - email validation, username validation, etc.

  • Decryption.

  • Encryption.

  • Checks.

  • GeoIP

  • Status Codes

Quickstart

Installation

npm install basic-toolsjs

Math

Addition

const { add } = require('basic-toolsjs').math; 

add([1, 2, 3, 4]); // => 10

Subtraction

const { subtract } = require('basic-toolsjs').math; 

subtract([1, 2, 3, 4]); // => -8

Multiplication

const { multiply } = require('basic-toolsjs').math; 

multiply([1, 2, 3, 4]); // => 24

Division

const { divide } = require('basic-toolsjs').math; 

divide([1, 2, 3, 4]); // => 0.041666666666666664

Random

Random String

const { randomString } = require('basic-toolsjs').random;

randomString(50); // => LxIwMerj4fkiP9TiTlvNnCAlz5LuAfVkFesqD6xHziqaZSKWsF

Random Int

const { randomInt } = require('basic-toolsjs').random;

randomInt(250000); // => 205680

Random Float

const { randomFloat } = require('basic-toolsjs').random;

randomFloat(2737823823.1273); // => 488491739.87192076

Currency

Format

const { format } = require('basic-toolsjs').currency;

format(1000000, 'USD'); // => $1,000,000.00

Unformat

const { unformat } = require('basic-toolsjs').currency;

unformat('$1,000,000.00', 'USD'); // => 1000000

Find

const { find } = require('basic-toolsjs').currency;

find('USD');
// => 
{
  code: 'USD',
  symbol: '$',
  thousandsSeparator: ',',
  decimalSeparator: '.',
  symbolOnLeft: true,
  spaceBetweenAmountAndSymbol: false,
  decimalDigits: 2
}

Currencies

const { currencies } = require('./index').currency;

currencies(); // =>
[
  {
    code: 'AED',
    symbol: 'د.إ.‏',
    thousandsSeparator: ',',
    decimalSeparator: '.',
    symbolOnLeft: true,
    spaceBetweenAmountAndSymbol: true,
    decimalDigits: 2
  },
  {
    code: 'AFN',
    symbol: '؋',
    thousandsSeparator: ',',
    decimalSeparator: '.',
    symbolOnLeft: true,
    spaceBetweenAmountAndSymbol: false,
    decimalDigits: 2
  },
  {
    code: 'ALL',
    symbol: 'Lek',
    thousandsSeparator: '.',
    decimalSeparator: ',',
    symbolOnLeft: false,
    spaceBetweenAmountAndSymbol: false,
    decimalDigits: 2
  },
  {
    code: 'AMD',
    symbol: '֏',
    thousandsSeparator: ',',
    decimalSeparator: '.',
    symbolOnLeft: false,
    spaceBetweenAmountAndSymbol: true,
    decimalDigits: 2
  }
  ... 60+ more
]

Encryption

Base64

const { base64 } = require('basic-toolsjs').encryption;

base64('Hello, World!'); // => SGVsbG8sIFdvcmxkIQ==

Hash

const { hash } = require('basic-toolsjs').encryption;

const result = async (str, salt) => {
  const res = await hash(str, salt);
  return res
}

result('Hello, World!', 12); // => $2a$12$tfUaj.b/i1daOlo4sLtr1uMJog0EdBHH.UeE17hfAbgaY1v2juDfe - Always different.

MD5

const { md5 } = require('basic-toolsjs').encryption;

md5('Hello, World!'); // => 65a8e27d8879283831b664bd8b7f0ad4

Decryption

Base64

const { base64 } = require('basic-toolsjs').decryption;

base64('SGVsbG8sIFdvcmxkIQ=='); // => Hello, World!

Checks

Email

const { email: emailCheck } = require('basic-toolsjs').checks;


const validate = async (email) => {
  const result = await emailCheck(email);

  console.log(result)
}

validate('Hello, World!'); // => false

String

const { string } = require('basic-toolsjs').checks;

string('Hello, World!');

Integer

const { string } = require('basic-toolsjs').checks;

string('Hello, World!'); // => true

Float

const { float } = require('basic-toolsjs').checks;

console.log(float('Hello, World!')); // => false

GeoIP

IPLookup

const { iplookup } = require('basic-toolsjs').geoip;


const lookup = async (ip) => {
  const res = await iplookup(ip);

  console.log(res);
}

lookup('1.1.1.1'); // =>
{
  "ip": "1.1.1.1",
  "version": "IPv4",
  "city": "Sydney",
  "region": "New South Wales",
  "region_code": "NSW",
  "country": "AU",
  "country_name": "Australia",
  "country_code": "AU",
  "country_code_iso3": "AUS",
  "country_capital": "Canberra",
  "country_tld": ".au",
  "continent_code": "OC",
  ... 14+ more
}

Status Codes

Codes

Find more information here: (https://en.wikipedia.org/wiki/List_of_HTTP_status_codes)