tagify

raw JSON →
0.1.1 verified Sat Apr 25 auth: no javascript abandoned

Browserify middleware that reads embedded compilation options from source files, allowing per-file browserify configuration without a separate build tool. Version 0.1.1 is the latest release. It provides a simple API as a transform stream. No longer actively maintained; alternatives like browserify itself or bundler-specific plugins are recommended. Differentiates by embedding options directly in comments.

error Error: Cannot find module 'tagify'
cause Package not installed or not in node_modules.
fix
npm install tagify
deprecated Package is no longer maintained and may not work with modern versions of browserify (>=17).
fix Use native browserify options or a maintained transform plugin instead.
npm install tagify
yarn add tagify
pnpm add tagify

Shows how to use tagify as a browserify transform to enable embedded compilation options.

import tagify from 'tagify';
import browserify from 'browserify';
const b = browserify();
b.transform(tagify, { global: true });
b.add('entry.js');
b.bundle().pipe(process.stdout);