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

deassert

v1.0.2

Published

Allows for programming with assertions/invariant-based programming during development without slowing down production.

Downloads

1,798

Readme

Deassert

npm version CI Coverage Status
code style: prettier GitHub Discussions BSD 3 Clause license Commitizen friendly semantic-release

Allows for programming with assertions/invariant-based programming during development without slowing down production.

Donate

Any donations would be much appreciated. 😄

Installation

# Install with npm
npm install -D deassert

# Install with pnpm
pnpm add -D deassert

# Install with yarn
yarn add -D deassert

# Install with bun
bun add -D deassert

Thinking about Invariants

Invariant checks in your code should be thought of as a way of saying:

If this check fails, something is very wrong elsewhere in my code.

Do not try to recover from Assertion Errors. If your error is recoverable, use a different type of error object.

Usage

You probably don't want to use this library in your development builds. It's designed to be used in your production builds.

Rollup Plugin

// rollup.config.js
import { rollupPlugin as deassert } from "deassert";

const isProduction = process.env.NODE_ENV === "production";

export default {
  // ...
  plugins: isProduction
    ? [
        // ...
        deassert({
          include: ["**/*.ts"], // If using TypeScript, be sure to include this config option. Otherwise remove it.
        }),
      ]
    : [
        // ...
      ],
};

CLI

npx deassert myfile.js > myfile.deasserted.js

Note: Options cannot be provided via the CLI.

API

import deassert from "deassert";

const result = deassert(code, options);
console.log(result.code);

Options

modules

An array of modules to be considered assert modules. These modules will be what is stripped out.

default
["assert", "assert/strict", "node:assert", "node:assert/strict"]
sourceMap

Determines if a source map should be generated.

MagicString source map options can be passed in.

default
false

If true is passed, then these options will be used:

{
  "hires": true,
}
ast

The AST of the code that is passed in.

Providing this is optional, but if you have the AST already then we can use that instead of generating our own.

default
undefined
acornOptions

The options provided to Acorn to parse the input code. These are not used if an AST is provided.

default
{
  "sourceType": "module",
  "ecmaVersion": "latest",
}

Example

Given the following code that uses assertion calls to enforce known invariants, some of which may be expensive (line 11):

import { ok as assert, fail as assertNever, AssertionError } from "node:assert/strict";

const stack = [{ type: "foo", children: [ /* ... */] }];
const result = [];

try {
  do {
    const element = stack.pop() ?? assertNever("stack is empty (or contains undefined).");

    switch(element.type) {
      case "foo": {
        assert(children.every(isExpectedType), "unexpected child type.");
        stack.push(...children);
        break;
      }

      case "bar": {
        assert(element.children.length === 0, "bar elements should not have children.");
        result.push(element.data);
        break;
      }

      case "baz": {
        throw new Error("Not Implemented yet.");
      }

      default: {
        assertNever(`Unexpected type: "${element.type}"`);
      }
    }
  } while (stack.length > 0);

  console.log((assert(result.length > 0), result));
}
catch (error) {
  assert(error instanceof Error, "Unexpected Error.");
  assert(!(error instanceof AssertionError), error);

  console.error(error);
}

This library will transform the code into essentially the following:

const stack = [{ type: "foo", children: [ /* ... */] }];
const result = [];

try {
  do {
    const element = stack.pop();

    switch(element.type) {
      case "foo": {
        stack.push(...children);
        break;
      }

      case "bar": {
        result.push(element.data);
        break;
      }

      case "baz": {
        throw new Error("Not Implemented yet.");
      }
    }
  } while (stack.length > 0);

  console.log(result);
}
catch (error) {
  console.error(error);
}

Similar Projects

This project was inspired by Unassert which has the same objective as this project.

While unassert works by modifying the inputted AST, this library works directly on the inputted code.