A modern, feature-rich web application for browsing and managing icons from Iconify installations. Built with Angular and React, supporting both web and desktop deployments via Docker.
- Icon Collection Browser — Browse all available icon sets with search and filtering
- Icon Search — Search icons by name, category, tags, and icon set name
- Icon Details — View comprehensive icon information including size, color, rotation, and flip options
- Icon Preview — Real-time preview of icons with customizable parameters
- Dark/Light Theme — Automatic theme switching with contrasting icon colors
- Lazy Loading — Infinite scroll for efficient icon browsing
- Docker Support — Deploy with Docker using Paketo buildpacks or traditional Dockerfile
- Desktop Application — Cross-platform desktop app with Electron
- Configuration File — Support for custom Iconify server URLs
Current Version: 1.0.4
See CHANGELOG for release notes and features.
# Install dependencies
npm install
# Serve the Angular application
npm run server
# Build for production
npm run build
# Start the production server
npm startThe application will be available at http://localhost:3000.
# Build Docker image
docker build -t iconify-navigator:latest .
# Run the container
docker run -p 3000:3000 iconify-navigator:latestSee DOCKER.md for detailed Docker and Paketo build instructions.
# Package for Windows
npm run desktop:package:win
# Package for Linux
npm run desktop:package:linux
# Package for all platforms
npm run desktop:package:all- Frontend: Angular 21 with TypeScript
- Build Tool: Angular CLI
- Styling: CSS with theme support
- Testing: Jest for unit tests, Robot Framework for acceptance tests
- Deployment: Docker, Electron desktop app
# Run unit tests
npm test
# Run acceptance tests (Robot Framework)
npm run test:robot
# Run acceptance tests for React version
npm run test:robot:reactThe application reads the Iconify server URL from a configuration file accessible via HTTP at the same base path. The default server is https://api.iconify.design.
To customize the server URL:
- Create a configuration file accessible at your deployment base URL
- The file should contain the Iconify server URL as plain text
GPL-3.0-or-later
Contributions are welcome! Please ensure all tests pass and documentation is updated accordingly.