
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@mindfiredigital/ignix-cli
Advanced tools
The Ignix CLI is a powerful command-line tool that helps you quickly scaffold, manage, and interact with Ignix components and themes in your projects. It provides both interactive and command-based interfaces for seamless development.
Install the CLI globally using npm or yarn:
npm install -g ignix-cli
Or use it directly with npx:
npx ignix-cli
Simply run ignix without any arguments to enter interactive mode:
ignix
The interactive mode provides a beautiful, guided interface with the following options:
Run specific commands directly:
ignix <command> [options]
ignix initInitialize Ignix UI in your project. This command sets up the necessary configuration and directory structure.
ignix init
What it does:
ignix.config.js configuration fileutils/cn.ts for className utilities)Interactive prompts:
ignix addAdd components or themes to your project from the Ignix UI registry.
ignix add component <component-names...>
Examples:
# Add a single component
ignix add component button
# Add multiple components
ignix add component button card modal input
# Interactive mode - prompts for component selection
ignix add component
What it does:
ignix add theme <theme-name>
Example:
ignix add theme dark
ignix listList all available components or themes from the Ignix UI registry.
ignix list component
Output:
ignix list theme
Output:
ignix themesManage and configure themes for your project.
ignix themes
Features:
The CLI uses an ignix.config.js file in your project root for configuration.
/* eslint-env node */
/** @type {import('ignix-cli').IgnixConfig} */
module.exports = {
// URL to the raw registry.json file on GitHub
registryUrl:
'https://raw.githubusercontent.com/mindfiredigital/ignix-ui/main/packages/registry/registry.json',
// URL to the raw themes.json file on GitHub
themeUrl:
'https://raw.githubusercontent.com/mindfiredigital/ignix-ui/main/packages/registry/themes.json',
// Default directory for UI components
componentsDir: 'src/components/ui',
// Template directory for Layouts
templateDir: 'src/components/templates',
// Your other configuration options...
};
We welcome contributions! Please see our contributing guidelines for more information.
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
CLI tool for the Ignix UI component library
We found that @mindfiredigital/ignix-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.