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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@workchain/vital-camera

v1.0.4

Published

```sh npx yalc add vital-camera && npx yalc link vital-camera && yarn install && yarn build && yarn dev yarn add @workchain/postal-code ```

Downloads

30

Readme

install:

npx yalc add vital-camera && npx yalc link vital-camera && yarn install && yarn build && yarn dev
yarn add @workchain/postal-code

add to api schema.json:

{
  "attributes": {
    "price": {
      "type": "integer",
    },
    "quantity": {
      "type": "integer",
    },
    "totalAmount": {
      "type": "customField",
      "customField": "plugin::vital-camera.total",
      "options": {
        "formula": "price * quantity",
      },
    },
    "postalCode": {
      "type": "customField",
      "customField": "plugin::vital-camera.postal",
      "maxLength": 8,
      "regex": "^\\d{3}-?\\d{4}$",
      "required": true,
    },
    "prefecture": {
      "type": "customField",
      "customField": "plugin::vital-camera.prefecture",
      "maxLength": 40,
      "required": true,
    },
    "address1": {
      "type": "string",
      "maxLength": 40,
    },
  },
}

Usage Guide for Custom FormulaField in Strapi

Purpose

FormulaField is a custom React component designed to display a calculated field based on a user-defined formula expression. It evaluates the formula using variables from the current form and formats the resulting number accordingly.


Main Props

| Prop | Description | Type | Required | | ------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------ | ----------- | --- | | attribute | Contains options with the formula string and optional number formatting options | { options?: { formula?: string; format?: Intl.NumberFormatOptions | string } } | Yes | | name | Name of the field | string | Yes | | onChange | Callback function called when the field value changes (usually unused because field is read-only) | (e: { target: { name: string; value: any } }) => void | Yes | | value | Current value (for controlled component usage) | any | No | | label | Display label for the field | string | No | | description | Additional description for the field | { defaultMessage: string } | No | | disabled | Disables the field (note: this field is always read-only) | boolean | No | | required | Makes field required | boolean | No | | error | Error message to display | string | No | | placeholder | Placeholder text shown when field is empty | string | No |


Formula Usage

  • The formula is defined in attribute.options.formula as a string (e.g. "price * quantity + tax").
  • Variables inside the formula must correspond to existing fields in the current form, such as price, quantity, or tax.
  • Supported operators: +, -, *, /, and parentheses (, ).
  • The formula is evaluated automatically whenever any related form field changes.
  • The numeric result of the formula is formatted according to the Intl.NumberFormat options provided in attribute.options.format.

Usage Example

Suppose you have a content type with fields price, quantity, and want a total field that calculates price * quantity automatically: