2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-19 16:59:02 +00:00
iconify/README.md

114 lines
6.5 KiB
Markdown
Raw Normal View History

2020-04-28 09:47:35 +00:00
### What is Iconify?
Iconify is the most versatile icon framework.
- Unified icon framework that can be used with any icon library.
2021-07-20 14:02:33 +00:00
- Out of the box includes 100+ icon sets with more than 100,000 icons.
2020-04-28 09:47:35 +00:00
- Embed icons in HTML with SVG framework or components for front-end frameworks.
- Embed icons in designs with plug-ins for Figma, Sketch and Adobe XD.
- Add icon search to your applications with Iconify Icon Finder.
For more information visit [https://iconify.design/](https://iconify.design/).
2020-04-28 09:57:30 +00:00
## Iconify version 1
2020-04-28 10:07:00 +00:00
If you are looking for Iconify version 1, check out https://github.com/iconify/iconify/tree/iconify1
2020-04-28 09:57:30 +00:00
This repository contains the new version, completely rewritten using modern development process.
2020-04-28 10:59:36 +00:00
## Iconify monorepo
2020-04-28 09:47:35 +00:00
2021-07-20 14:02:33 +00:00
This repository is a big monorepo that contains several icon components for various frameworks and several packages that are reused by all those components.
2020-04-28 09:47:35 +00:00
2021-07-20 14:02:33 +00:00
## Iconify icon components
2020-04-28 09:47:35 +00:00
2021-07-20 14:02:33 +00:00
Iconify icon components are not just yet another set of icon components. Unlike other icon components, Iconify icon components do not include icon data. They load icon data on demand from Iconify API.
2020-04-28 09:47:35 +00:00
2021-07-20 14:02:33 +00:00
Iconify API provides data for over 100,000 icons! API is hosted on publicly available servers, spread out geographically to make sure visitors from all over the world have the fastest possible connection with redundancies in place to make sure it is always online.
2020-04-28 09:47:35 +00:00
#### Why is API needed?
When you use an icon font, each visitor loads an entire font, even if your page only uses a few icons. This is a major downside of using icon fonts. That limits developers to one or two fonts or icon sets.
2021-07-20 14:02:33 +00:00
If you are using typical icon set that is not a font, you still need to bundle all icons used in your application, even ones that visitor does not need.
2020-04-28 10:59:36 +00:00
2021-07-20 14:02:33 +00:00
Unlike icon fonts and components for various icon sets, Iconify icon components dynamically load icon data from Iconify API whenever it is needed.
2020-04-28 10:59:36 +00:00
2021-07-20 14:02:33 +00:00
This makes it possible to have an unlimited choice of icons!
2020-04-28 09:47:35 +00:00
## Available packages
2021-07-20 14:02:33 +00:00
There are several Iconify components included in this repository:
2020-04-28 09:47:35 +00:00
2021-07-20 14:02:33 +00:00
| Implementation | Usage |
| -------------------------------------- | ------------------------- |
| [SVG Framework](./packages/iconify/) | HTML |
| [React component](./packages/react/) | React, Next.js |
| [Vue 3 component](./packages/vue/) | Vue 3 |
| [Vue 2 component](./packages/vue2/) | Vue 2 |
| [Svelte component](./packages/svelte/) | Svelte, SvelteKit, Sapper |
| [Ember component](./packages/ember/) | Ember |
2020-04-28 09:47:35 +00:00
Other packages:
2021-07-20 14:02:33 +00:00
- [Iconify types](./packages/types/) - TypeScript types.
- [Iconify utils](./packages/utils/) - common files used by various Iconify projects (including tools, API, etc...).
2021-07-20 14:02:33 +00:00
- [Iconify core](./packages/core/) - common files used by various components.
- [API redundancy](./packages/api-redundancy/) - library for managing redundancies for loading data from API: handling timeouts, rotating hosts.
- [Library builder](./packages/library-builder/) - build scripts for packages that do not require bundling, similar to `tsup`, but without bundler. Used by Utils, Core and API Redundancy packages. Builds ES and CommonJS modules, type definition files and updates exports in `package.json`.
2020-04-28 09:47:35 +00:00
- [React demo](./packages/react-demo/) - demo for React component. Run `npm start` to start demo.
2021-04-27 17:52:09 +00:00
- [Next.js demo](./packages/nextjs-demo/) - demo for React component with Next.js. Run `npm run build` to build it and `npm start` to start demo.
2021-05-07 18:21:32 +00:00
- [Vue 3 demo](./packages/vue-demo/) - demo for Vue component. Run `npm run dev` to start demo.
- [Vue 2 demo](./packages/vue2-demo/) - demo for Vue component. Run `npm run dev` to start demo.
- [Svelte demo](./packages/svelte-demo/) - demo for Svelte component. Run `npm run dev` to start demo.
- [Svelte demo with Vite](./packages/svelte-demo-vite/) - demo for Svelte component using Vite. Run `npm run dev` to start demo.
- [Sapper demo](./packages/sapper-demo/) - demo for Sapper, using Svelte component on the server and in the browser. Run `npm run dev` to start the demo (deprecated, use SvelteKit instead of Sapper).
- [SvelteKit demo](./packages/sveltekit-demo/) - demo for SvelteKit, using Svelte component on the server and in the browser. Run `npm run dev` to start the demo.
2021-07-20 14:02:33 +00:00
- [Ember demo](./packages/ember-demo/) - demo for Ember component. Run `npm run start` to start demo.
2020-04-29 09:46:24 +00:00
- [Browser tests](./packages/browser-tests/) - unit tests for SVG framework. Run `npm run build` to build it. Open test.html in browser (requires HTTP server).
2020-04-28 09:47:35 +00:00
## Installation
This monorepo used Lerna to manage packages, but due to few bugs in Lerna, it was replaced with custom manager.
To install dependencies in all packages, run
```bash
npm install
```
This will install all dependencies and create symbolic links to packages.
If links stop working for some reason, run `npm run link` to fix links.
If you want to remove `node_modules` for all packages, run `npm run clean`.
If you want to re-install dependencies, run `npm run reinstall`.
2022-01-28 11:44:26 +00:00
### Monorepo on Windows
This monorepo uses symbolic links to create links between packages. This allows development of multiple packages at the same time.
When using Windows, symbolic links require setting up extra permissions. If you are using Windows and cannot set permissions for symbolic links, there are several options:
- Use Windows Subsystem for Linux (WSL).
- Treat each package as a separate package, without links to other packages. All packages do have correct dependencies, so you will be able to use most packages (except for `browser-tests` that requires links to access directory `lib` from `iconify` package), but you will not be able to work on multiple packages at the same time.
2020-08-13 15:44:56 +00:00
## Documentation
2021-07-20 14:02:33 +00:00
Documentation for all packages is available on [Iconify documentation website](https://docs.iconify.design/icon-components/):
2020-08-13 15:44:56 +00:00
2021-07-20 14:02:33 +00:00
- [SVG framework documentation](https://docs.iconify.design/icon-components/svg-framework/index.html).
- [Components documentation](https://docs.iconify.design/icon-components/components/index.html).
2020-08-13 15:44:56 +00:00
## Licence
2020-04-28 09:47:35 +00:00
Iconify is dual-licensed under Apache 2.0 and GPL 2.0 licence. You may select, at your option, one of the above-listed licences.
2020-04-28 09:47:35 +00:00
`SPDX-License-Identifier: Apache-2.0 OR GPL-2.0`
This licence does not apply to icons. Icons are released under different licences, see each icon set for details.
Icons available by default are all licensed under some kind of open-source or free licence.
2020-04-28 09:47:35 +00:00
2021-05-07 18:21:32 +00:00
© 2020, 2021 Iconify OÜ