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

@hybr1d/integrations-common

v2.11.0

Published

A repository that consists of all the common code related to integrations that is shared across different environments

Readme

@hybr1d/integrations-common

A repository that consists of all the common code related to integrations that is shared across different environments.

Table of Contents

  1. Installation
  2. Usage
  3. Features
  4. Configuration
  5. Contributing
  6. Deployment

Installation

This package can be installed using npm:

npm install @hybr1d/integrations-common

Local Development Setup

  1. Clone the repository:
git clone [repository-url]
cd integrations-common
  1. Install dependencies:
npm install
  1. Create a .env file in the root directory (see Configuration section for required variables)

  2. Build the project:

npm run build

Usage

Development Mode

To run the project in development mode with hot reloading:

npm run dev

Production Mode

To run the project in production mode:

npm run build
npm start

Library Usage

When using this package as a dependency in other projects:

import { SomeIntegration } from '@hybr1d/integrations-common';

// Example usage
const integration = new SomeIntegration(config);

Features

  • Common integration patterns and utilities
  • Shared TypeScript types and interfaces
  • Integrated AWS SDK support
  • HTTP client with Axios
  • Cryptography utilities (crypto-js and cryptr)
  • MongoDB integration
  • Promise utilities with Bluebird
  • Logging with Pino
  • Date/time manipulation with Moment.js
  • Query string handling with qs

Configuration

The following environment variables are required to run the project:

# AWS Configuration
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_REGION=

# MongoDB Configuration
MONGODB_URI=

# Application Configuration
NODE_ENV=development
LOG_LEVEL=info

# Add other required environment variables

Contact the development team to obtain the necessary credentials and configuration values.

Contributing

Development Workflow

  1. Create a new branch from main:
git checkout -b feature/your-feature-name
  1. Make your changes and ensure they follow the project's coding standards:

    • Use TypeScript for all new files
    • Follow the existing project structure
    • Add appropriate tests for new features
    • Update documentation as needed
  2. Build and test your changes:

npm run build
  1. Commit your changes using conventional commit messages:
git commit -m "feat: add new integration feature"
  1. Push your changes and create a pull request:
git push origin feature/your-feature-name

Publishing

To publish a new version:

  1. Update the version in package.json
  2. Run the build:
npm run build
  1. Publish to npm:
npm publish

Deployment

This package is published to npm and can be deployed using the following steps:

  1. Ensure all tests pass and the build is successful
  2. Update the version number in package.json
  3. Run the prepublish script:
npm run prepublish
  1. Publish to npm:
npm publish

Version Control

This project follows semantic versioning (MAJOR.MINOR.PATCH). Current version: 2.10.2

Dependencies

Key dependencies include:

  • aws-sdk (^2.1445.0) - AWS SDK for Node.js
  • axios (^1.5.0) - HTTP client
  • mongodb (^5.8.1) - MongoDB driver
  • typescript (^4.9.5) - TypeScript compiler
  • Other utilities: bluebird, crypto-js, cryptr, moment, pino, qs

For the complete list of dependencies, refer to the package.json file.