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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@devoinc/app-widgets

v1.0.6

Published

Devo library that contains the building blocks to start building visual widgets on Devo Apps.

Downloads

18

Readme

Build Publish

Contributor Covenant

Devo App Widgets

Devo App Widgets is a library that contains the building blocks to start building visual widgets on Devo Apps.

Live demo 🌈

You can explore this library and interact with widgets directly by using in the following link:

https://devoinc.github.io/App-Widgets/demo


What is a Devo App?

A Devo App is a front-end web browser extension capable of being injected and hosted into the Devo web platform as well as communicating with it and with the collection of HTTP services enabled for Devo customers.

Before starting

As a main requirement for the development of applications in Devo it is necessary to have access to the platform and a domain.

Once you have access, to prepare the development environment you must install the google chrome extension "Devo Runner", you will find it here. This extension will help the developer to be able to debug and develop their application by providing a mechanism to inject it into an existing Devo client domain.


Instalation

Start by installing this package in your NPM project

$ npm install @devoinc/app-widgets

Usage

There are 5 widgets available at the moment:

ApexColumn
ApexDonut
ApexPie
SimpleMap
SingleValue

You can visit our Storybook website to watch them in action.

Documentation

For specific question regarding how to use these Widgets, refer to each module in the documentation.

https://devoinc.github.io/App-Widgets/


Development

1. Getting started

You need to have Node.js, v16.15.1, to develop on this library.

In case you have nvm installed, you can just run the following command. There is an .nvmrc file with specific node.js version.

nvm use

In order to install what is necessary and to start the project, please follow these simple steps:

# Clone this repository:
git clone [email protected]:DevoInc/App-Widgets.git

# Go into the repository:
cd App-Widgets

# Install dependencies:
npm ci

# Run the development environment (storybook):
npm run start

# Build for production:
npm run build

2. Develop locally using Storybook

# Run in development and serve directly:
npm run start

or

npm run storybook

# Just build, and open separately:
npm run storybook:build

3. Develop locally using an example app

In case you want to test this library locally (without publish), you need to build the library, create a package, and use it directly as a dependency on your local application.

# Build package:
npm run build

# Package it locally (without publish):
npm pack

Then, you need to import this dependency package on your local app (package.json):

{ # App's package.json

   # Rest of App's package.json
   ...

   "dependencies": {
       "@devoinc/app-widgets": "file:../App-Widgets/devoinc-app-widgets-*.tgz",
       # Rest of dependencies
       ...
   }
}

4. Testing

npm run test

5. Linter

npm run lint

🚨 Development notes:

  1. Bundle .d.ts types issue

    There is an issue with Typescript types generation while using parcel. We need to use .d.tsx files instead of .d.ts ones. Because raw .d.ts files are sometimes skipped during bundle creation on parcel, generating empty references to .d.ts on bundler files.

    Issue link on Github: https://github.com/parcel-bundler/parcel/issues/7790