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

ya-igcc

v0.0.2-4

Published

igcc is an interactive shell for C development, which can be utilized like REPL (Read-Eval-Print-Loop) for dynamic languages such as Lisp.

Readme

Warning; WIP!

The software is still pre-alpha quality. Use at your own risks.

igcc - yet another interactive shell for C development

Overview

igcc is an interactive shell for C development, which can be utilized like REPL (Read-Eval-Print-Loop) for dynamic languages such as Lisp. It would be useful for testing new libraries or learning C language. igcc is basically a thin wrapper around gcc, which invokes the compiler for each lines. Its features and limitations are listed below:

Features

  • written in less than 700 lines of bash script
  • line editting with GNU Readline
  • some useful commands
  • tab-completion of keywords and commands

Limitations

  • do not support C preprocessor directives
  • do not support function definition if use clang
  • getting user input in C does not work correctly
  • multiple lines are not allowed as input (use :edit instead)

Requirements

  • Bourne-again shell (bash) > 4.2
  • GCC > 4.9 | Clang > 3.8

Installation

Just put the script (igcc) into anywhere included in PATH.

Usage

Options

Usage: igcc [options]
Options:
  -h, --help                   show this help and exit.
  -v, --version                show version info and exit.
  -std <standard>              specify c dialect.
  -i, --interactive <boolean>  interactive or not. default: true when there is no "--eval" "--require", false in other cases
  -r, --require <file>         interpret file.
  -e, --eval <...>             evaluate script.
  --read-stdin <boolean>       whether to read from standard input. default: same as interactive
  -Pc <option>                 pass <option> to the c compiler.
  -cc <compiler>               specify c compiler.
  -x <language>                specify the language. permissible languages include: c. default: c

commands

gnu11@(igcc)> :help
    :clear              clear history and reset environment.
    :edit               invoke /usr/bin/nano.
    :exit               exit igcc.
    :help               show this help.
    :include            show added header files.
    :include <header>   add header file.
    :lib                show added shared libraries.
    :lib <library>      add shared library to be linked.
    :load <file>        restore enviroment from <file>.
    :save <file>        save current environment into <file>.      
    :show               show history.
    ! <command>         excute shell command.

If source-highlight is available on your system, :show uses it to highlight history. Also, if indent is available, it is used to format history.

See also

  • CINT - a C/C++ interpreter which supports ANSI-C
  • Cling - a C++ interpreter built on the top of LLVM and Clang
  • PicoC - a small C interpreter, comes with REPL
  • TCC - an embedable C compiler

License

Distributed under GPLv3

Author

TANI Kojiro<[email protected]> Zaoqi<[email protected]>