New:Socket for Asana Is Now Available.Learn more
Get Started

@zachleat/noop

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zachleat/noop

A minimal module to test importing in other tools.

latest
Source
npmnpm
Version
1.0.7
Version published
Weekly downloads
314
-48.27%
Maintainers
1
Weekly downloads
 
Created
Source

@zachleat/noop

A minimal ESM package to test module importing in other tools.

Install from npm:

npm install @zachleat/noop

Usage:

// ESM
import { noop, noopSync } from "@zachleat/noop";

// Dynamic Import
const { noop, noopSync } = await import("@zachleat/noop");

// CommonJS
const { noop, noopSync } = require("@zachleat/noop");

// Explicit ESM
import { noop, noopSync } from "@zachleat/noop/esm";

// Explicit CommonJS
const { noop, noopSync } = require("@zachleat/noop/cjs");

// Throws an error on import/require (use for npm `overrides`)
import "@zachleat/noop/error";
require("@zachleat/noop/error");

FAQs

Package last updated on 10 Dec 2025

Related posts