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

dynamo-calculator

v1.0.3

Published

Dynamo Calculator is a powerful and efficient tool designed to perform complex mathematical calculations with ease. It supports a wide range of functions including basic arithmetic, algebra, calculus, and more. Whether you are a student, educator, or prof

Downloads

197

Readme

Dynamo Calculator

Description

Dynamo Calculator is a powerful and efficient tool designed to perform complex mathematical calculations with ease. It supports a wide range of functions including basic arithmetic, algebra, calculus, and more. Whether you are a student, educator, or professional, Dynamo Calculator provides a user-friendly interface and robust features to meet your computational needs.

Installation

To install Dynamo Calculator, run the following command in your terminal:

npm install dynamo-calculator

Usage

Validate if an element is allowed to be inserted in DynamoDb, considering that it has a maximum of 4KB.

import { isItem4KBAllowed } from "dynamo-calculator";
const item = {
  name: "foobar",
};
console.log(isItem4KBAllowed(item)) //true
if (isItem4KBAllowed(item)) {
  // Your super logic here!!
}

In contrast, this is an item that exceeds the size of a 4KB item supported by DynamoDb.

import { isItem4KBAllowed } from "dynamo-calculator";
const item = {
  name: "foobar".repeat(6291556),
};
console.log(isItem4KBAllowed(item)) //false

Get additional DynamoDb query cost information for this item

import { calculateCapacityDynamo } from "dynamo-calculator";
const item = {
  id: "f0ba8d6c",
  fullName: "Kevin Lupera",
  isAdmin: true,
  favouriteNumber: -1e-131,
  foods: ["encebollado", "tonga"],
};
const data = calculateCapacityDynamo(item);
console.log(data);
/*
{
  rcus: 1, 
  rcusEventualConsistency: 0.5,
  rcusPartOfATransaction: 2,
  wcus: 1,
  wcusPartOfATransaction: 2,
}
*/

Get info about size for this item

import { calculateItemSize } from "dynamo-calculator";
const item = {
  id: "f0ba8d6c",
  fullName: "Kevin Lupera",
  isAdmin: true,
  favouriteNumber: -1e-131,
  foods: ["encebollado", "tonga"],
};
const data = calculateItemSize(item);
console.log(data);
/*
{
  size: 81, //In bytes
  sizes: {
    id: { sizeOfName: 2, attributeSize: 8, total: 10 },
    fullName: { sizeOfName: 8, attributeSize: 11, total: 19 },
    isAdmin: { sizeOfName: 7, attributeSize: 1, total: 8 },
    favouriteNumber: { sizeOfName: 15, attributeSize: 3, total: 18 },
    foods: { sizeOfName: 5, attributeSize: 21, total: 26 }
  },
  largestAttribute: 'foods'
}
*/

Tests

To run the tests, use the following command:

npm test

Contributing

Guidelines for contributing to the project.

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-branch).
  3. Make your changes.
  4. Commit your changes (git commit -m 'Add some feature').
  5. Push to the branch (git push origin feature-branch).
  6. Open a pull request.

License

Information about the project's license.

This project is licensed under the MIT License - see the LICENSE file for details.

Contact

Information on how to contact the project maintainers.

Credits

I would like to thank Zac Charles for their work on post, which served as an invaluable source of inspiration and foundation for developing this library. Their contribution has been essential to this project. Thank you for sharing your knowledge!