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

g-fmb-cli

v1.1.0

Published

G-FMB Converter CLI — Oracle Forms FMB modernization from the command line

Readme

g-fmb-cli — Oracle Forms FMB CLI Tool

Convert, edit, validate, and compile Oracle Forms FMB files from the command line.

Installation

npm install -g g-fmb-cli

Requires Node.js 18+.

Commands

fmb convert <file>        # Convert FMB to JSON (or JSON to normalized JSON)
fmb export <file>         # Rebuild FMB from edited JSON
fmb validate <file>       # Validate module structure and PL/SQL
fmb compile <file>        # Compile FMB to FMX (requires Oracle Forms)
fmb serve                 # Start local companion server for web editor
fmb login                 # Authenticate with your G-FMB account
fmb logout                # Sign out
fmb status                # Show auth & license status
fmb config list           # Show all configuration
fmb config set <k> <v>    # Set a config value
fmb config get <k>        # Get a config value

Examples

# Convert a binary FMB to JSON
fmb convert myform.fmb

# Pipe JSON output to jq for inspection
fmb convert myform.fmb --stdout | jq '.Blocks[0].Items | length'

# Rebuild FMB from edited JSON
fmb export myform.fmb.json

# Validate PL/SQL structure
fmb validate myform.fmb.json

# Compile FMB to FMX
fmb compile myform.fmb

# Start local companion server on default port 6832
fmb serve

# Companion server on custom port
fmb serve --port 9000

Configuration

Configuration is stored in ~/.fmb/config.json.

| Key | Description | |-----|-------------| | apiUrl | G-FMB cloud API URL (default: https://www.g-fmb.com/api) | | fmbToolPath | Path to local FmbTool.exe for offline conversion | | oracleHome | Oracle Forms home directory (e.g. C:\Oracle\OraDev6i) | | language | UI language: tr, en, or de |

CI/CD Usage

The CLI is pipeline-friendly — all commands exit with proper codes and output can be piped:

# In a CI pipeline: convert and validate
fmb convert form.fmb -o form.json
fmb validate form.json || exit 1

# Extract all PL/SQL into SQL file
fmb convert form.fmb --stdout | jq -r '.ProgramUnits[].Code' > all_code.sql

Local Companion Server

The fmb serve command starts an HTTP server on localhost that the G-FMB web editor can connect to for:

  • FMX Compilation — compile FMB files using your local Oracle Forms installation
  • Local file access — compile files by path without uploading

The server is localhost-only and not exposed to the network.

Links

License

Proprietary — DMGSoft. All rights reserved.