canirequire

canirequireESM-only › tinyrainbow

Is tinyrainbow ESM-only? Can you require() it?

A small library to print colourful messages.

Last verified Sep 9, 2026 against tinyrainbow@3.1.1. JSON

ESM-only ESM-only — it has never shipped a CommonJS build

tinyrainbow has been ESM-only since its first stable release. There is no version you can require() on Node.js 18 or older.

On Node.js 20.19+, 22.12+ and every newer release, require("tinyrainbow") works anyway: Node can load synchronous ES modules through require(). Verified on Node 20, 22, 24, 26. Node.js 18 and older still fail with ERR_REQUIRE_ESM.

Latest
3.1.1 (Jul 28, 2026)
Module format
ESM-only
Last CommonJS version
none
ESM-only since
1.0.0 (Apr 13, 2023)
TypeScript types
Bundled
Node engines
>=14.0.0
Weekly downloads
103.3M
License
MIT

Does tinyrainbow@3.1.1 actually load? Runtime test results

Installed and executed on Sep 9, 2026 with require("tinyrainbow") from a CommonJS file and import "tinyrainbow" from an ES module.

Runtimerequire("tinyrainbow")import "tinyrainbow"
Node.js 18✗ failsERR_REQUIRE_ESM✓ works
Node.js 20✓ works✓ works
Node.js 22✓ works✓ works
Node.js 24✓ works✓ works
Node.js 26✓ works✓ works
Bun 1.4✓ works✓ works

How to import tinyrainbow

ES modules (import)

import tinyrainbow from "tinyrainbow";

CommonJS (require)

// Node.js 20.19+ / 22.12+ / newer (package has no top-level await):
const tinyrainbow = require("tinyrainbow");

// Any Node.js version:
const tinyrainbow = await import("tinyrainbow");

Module format by version

Derived from the type, main and exports fields of every stable release on npm (12 versions; the newest 12 shown).

VersionsFormatFirst published
1.0.0 – 3.1.1ESM-onlyApr 13, 2023

Frequently asked

Is tinyrainbow ESM-only?

tinyrainbow@3.1.1 is ESM-only. tinyrainbow has been ESM-only since its first stable release. There is no version you can require() on Node.js 18 or older.

Which version of tinyrainbow still supports CommonJS / require()?

None. tinyrainbow has always been ESM-only. Use import, or await import("tinyrainbow") from CommonJS.

How do I use tinyrainbow from a CommonJS file?

Use a dynamic import: const mod = await import("tinyrainbow"). On Node.js 20.19+, 22.12+ and newer, a plain require("tinyrainbow") also works for ESM packages that do not use top-level await.

Does tinyrainbow work in Bun?

Yes. import "tinyrainbow" loaded successfully in Bun 1.4 on Sep 9, 2026.

Does tinyrainbow ship TypeScript types?

Yes. tinyrainbow bundles its own type declarations; no @types package is needed.

Links

Other esm-only packages

Similar popularity