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 🙏

© 2024 – Pkg Stats / Ryan Hefner

ironmanjs

v1.0.5

Published

Bringing ironman mode to JavaScript - JavaScript without the bloat

Downloads

10

Readme

IronmanJS

Bringing Ironman mode to JavaScript - JavaScript without bloat.

Do you think that JavaScript has too many packages? Are you looking for a challenge? Do you want to ensure you have absolutely no dependencies? Do you want bragging rights? Or are you just old school? If you answered yes to any of these questions then IronmanJS is for you.

This simple (yet effective) package prevents any other packages from being installed in your codebase. It does so by scanning package.json for any (and all) dependencies, if it detects any additional dependencies it throws an error.

Usage

Using IronmanJS is simple and easy, simply include this single line at the beginning of any one file that is used in your app (I recommend your app's entrypoint):

require('ironmanjs');

It is usually desirable to only run code after package.json is checked (although this will not affect whether ironmanjs throws an error or not). In this case a callback can be supplied to the default export like so:

function main() {
    console.log('This code is better than before');
}

require('ironmanjs')(main);

Caveats

The callback is necessary because reading a file takes longer to execute than simple JavaScript, for example the following code will result in "Hello World!" being printed before the ironmanjs error is thrown.

require('ironmanjs');
console.log('Hello World!');

For this reason it is not recommended to call the default export after the require statement, because then it becomes much harder to predict the order of execution and therefore if the callback will be called, for example in cases like this:

const setcb = require('ironmanjs');

(() => {
    // Some long running code
})();

// Callback may never be called if ironmanjs' check completes before IIFE
setcb(() => {
    console.log('Hello World!');
});

TypeScript and whitelists

I am working on a TypeScript based version of the code, however, to support this use case (and others) we allow for a whitelist to be created in your .env file. Since reading values from .env requires the dotenv package this package must be added to the whitelist.

// .env
IRONMANJS_WHITELIST='typescript,axios,dotenv'

For this code to then behave correctly the dotenv package must be run before ironmanjs is required:

// Any imports can appear above (or below) the entrypoint
import { post } from 'axios'

// This should be the entrypoint of your app
require('dotenv').config();
require('ironmanjs')(() => {
    // Your code here
});

I recommend using the require function over import statements for both the dotenv package and the ironmanjs package, this is because it is more predictable than the corresponding import statements. However, this is only in the case of ironmanjs and dotenv you are then free to use whatever syntax for the rest of your imports.

Of course it goes without saying, if you use this feature you are no longer using ironman JavaScript, and you immediately lose all bragging rights.