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

@onereach/types-hitl-api

v0.0.90

Published

In this section we are going to explain how to run the application locally, without (almost) any OneReach dependencies.

Readme

Getting Started

In this section we are going to explain how to run the application locally, without (almost) any OneReach dependencies.

Make sure OneReach NPM token is available

In order to install some dependencies you are going to need a valid token available as a variable - OR_NPM_TOKEN. If it is not available using echo $OR_NPM_TOKEN - you should ask someone to help you setup access to OneReach NPM.

Installing local PostgreSQL

If you already have a local PostgreSQL installed, or know how to do so - you are free to go to the next section.

The easiest way to install a local database - is by using Docker - Install Docker Desktop. After making sure Docker is installed and is available through command line as docker - we can proceed with installing and creating a local database.

Run the following commands (and replace mysecretpassword here and in the examples below with an actual password):

docker pull postgres
docker run --name postgresql-local -e POSTGRES_USER=hitl-app -e POSTGRES_PASSWORD=mysecretpassword -e POSTGRES_DB=hitl-app-db -p 5432:5432 -d postgres

You should be able to connect to this database using command (enter the password, if it is asked):

docker exec -it postgresql-local psql hitl-app-db -U hitl-app -W

Connecting to the local database

Create a file named .env in the project root directory with the following content:

APP_DEV_PORT=8080
DB_USER=hitl-app
DB_PASSWORD=mysecretpassword
DB_HOST=localhost
DB_PORT=5432
DB_NAME=hitl-app-db
SCHEDULED_TASKS_SWITCH='{"ARCHIVE_SESSION_EVENTS":true,"CLEAN_UP_LISTENERS":true,"CLEAN_UP_SESSIONS":true,"ADD_EVENTS_TO_ARCHIVE":true,"ADD_MEMBERS_TO_ARCHIVE":true,"CLEAN_UP_CONTACTLESS_SESSIONS":true,"FIX_EXPIRED_AGENT_STATUSES":true,"DELETE_EXPIRED_SESSIONS":true,"LONG_EXPIRE_DAYS":7,"SHORT_EXPIRE_DAYS":1}'

You can change all the values above, if you want to, just make sure that the variables in .env file point to some valid PostgreSQL instance.

Retrieving deploy config

Make sure you have deploy-platform project installed on your machine, and a command or is globally available.

Run the following commands:

or get-config --branch local --client development --env qa --feature master --project hitl-api --service hitl_api.config --service-or-eval service > config.json

A file config.json, which is ignored by git, should appear in the project root with some content.

Installing packages and starting the application

After installing third party dependencies, we can finally run:

npm install
npm start

This will start the application in the development mode as a simple express server. Changes to the code will be tracked and server will restart automatically.

An almost empty config.json file is required to build the application. In order to run the application on AWS, we are going to need real env variables that we are going to retrieve later.

Server now is ready to accept requests, but it will probably fail on every attempt to access database. In order to read and write from database we need to send a request to create or update our SQL tables.

In order to run all migrations to the latest version, run the following request in the console (or in Postman):

curl --location --request POST 'http://localhost:8080/api/v1/migrations' --header 'Authorization: user'

After successful response you should be able to send all other requests.

Testings the application

In order to verify that (most of) the application logic works, you should run:

npm test

If all tests pass successfully - congratulations, this means that the local deployment was successful.