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.
Common errors
error Error: Cannot find module 'tagify' ↓
cause Package not installed or not in node_modules.
fix
npm install tagify
Warnings
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.
Install
npm install tagify yarn add tagify pnpm add tagify Imports
- default wrong
const tagify = require('tagify')correctimport tagify from 'tagify'
Quickstart
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);