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

ifs-bruno

v1.3.0

Published

Import IFS OpenAPI endpoints into Bruno collections

Readme

ifs-bruno

A CLI tool to import IFS Cloud OData endpoints into Bruno collections.

It reads IFS OpenAPI specs — either from a local file or directly from a live IFS instance — and generates Bruno request files ready to use.

Prerequisites

  • Node.js 18+
  • Bruno desktop app
  • An IFS Cloud instance with Keycloak authentication

Installation

npm install -g ifs-bruno

Or with pnpm:

pnpm add -g ifs-bruno

Workflow

The typical flow has three steps:

1. Create a collection

Scaffolds a new Bruno collection with a pre-configured Keycloak auth request and a default environment.

ifs-bruno init

The CLI will prompt for each value interactively. You can also pass them as flags to skip the prompts:

ifs-bruno init --name IFS --host https://your-env.ifs.cloud --realm your-realm --client-id IFS_postman --output my-collection

| Flag | Description | |---|---| | --name | Collection name | | --host | IFS Cloud host URL | | --realm | Keycloak realm name | | --client-id | OAuth client ID | | --output | Output folder (defaults to --name) |

Generated structure:

my-collection/
  opencollection.yml        ← Bruno collection manifest
  .gitignore
  environments/
    default.yml             ← baseHost, realm, clientId, accessToken
  Auth.yml                  ← Keycloak client_credentials request

Note: After running init, open the collection in Bruno, go to the default environment, and set clientSecret manually. It is intentionally not written to disk.

2. Authenticate

Open the collection in Bruno, select the default environment, and run the Auth request. This sets accessToken automatically — all subsequent requests use it via the environment variable.

3. Import endpoints

Parse an IFS OpenAPI spec and pick which endpoints to add to the collection. Each endpoint becomes its own .yml file inside a subfolder named after the spec.

From a local spec file:

ifs-bruno add --spec ./WorkTaskHandling.json --collection ./my-collection

Directly from a live IFS instance (requires a saved profile — see below):

ifs-bruno add --profile my-env --collection ./my-collection

| Flag | Description | |---|---| | --spec, -s | Path to a local IFS OpenAPI spec (JSON or YAML) | | --profile, -p | Name of a saved IFS profile to fetch specs live | | --collection, -c | Path to the Bruno collection folder |

The CLI shows a searchable list of available endpoints. Select the ones you want and confirm — the files are written immediately.

Re-running add on an already-imported endpoint updates it in place instead of creating a duplicate.

Profiles

Profiles store your IFS connection details locally (~/.ifs-bruno/config.json) so you don't have to type them every time. They are required for the live-fetch flow (--profile).

# Save a new profile
ifs-bruno profile add

# List saved profiles
ifs-bruno profile list

# Delete a profile
ifs-bruno profile delete <name>

Contributing

See CONTRIBUTING.md.