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

rabaz-terminal

v0.1.18

Published

Package to work with rabaz terminal

Readme

Rabaz Terminal

What is this?

This library is an abstraction for terminal-api usage.

It exposes certain functions to interact with the api

Install:

npm install --save rabaz-terminal

Usage:

Code

const { Terminal } = require('rabaz-terminal');
// or
import { Terminal } from 'rabaz-terminal';

const terminal = new Terminal('terminal_url', 'api_key');

Class: Terminal

Options

  • TERMINAL_API_USE_BEARER: set to false to not use 'Bearer' keyword in Authorization header of api request - default: true

  • TERMINAL_API_FOLDERS_ENDPOINT: the url endpoint for accessing the "folders" resource - default: /folders

  • TERMINAL_API_UPLOAD_ENDPOINT: the url endpoint for accessing the "upload" resource - default: /upload

  • TERMINAL_API_DOWNLOAD_ENDPOINT: the url endpoint for accessing the "download" resource - default: /download

  • TERMINAL_API_TEMP_FOLDER_PATH: the folder of temporary folders and files on upload - default: ../../tmp

  • TERMINAL_API_TEMP_RESULTS_LIMIT: number of results from terminal - default: 1000

  • TERMINAL_API_SEND_POLLING_INTERVAL: frequency of checking terminal status in recieve and transfer functions - default: 1000

  • TERMINAL_API_TEMINAL_SEND_DELAY: timeout of recieve and transfer functions - default: 20 * 60 * 1000

  • TERMINAL_API_EXTENDED_FILE_STATUSES: extend statuses - default: []

  • TERMINAL_API_DEPRICATED_FILE_STATUSES: reomve statuses - default: []

  • TERMINAL_API_EXTENDED_NACK_REASONS: extend nack reasons - default: []

  • TERMINAL_API_DEPRICATED_NACK_REASON: reomve nack reasons - default: []

  • TERMINAL_API_DEFAULT_NACK_REASON: default terminal nack reason - default: NACKED_BY_SERVICE

  • TERMINAL_API_LIGHT_REQUEST_TIMEOUT: light terminal request timeout - default: 15 * 1000

  • TERMINAL_API_HEAVY_REQUEST_TIMEOUT: heavy terminal request timeout - default: 5 * 60 * 1000

API Documentation

Full API description is availible at gitlab.pages