Gathering detailed insights and metrics for @ionic/core
Gathering detailed insights and metrics for @ionic/core
Gathering detailed insights and metrics for @ionic/core
Gathering detailed insights and metrics for @ionic/core
A powerful cross-platform UI toolkit for building native-quality iOS, Android, and Progressive Web Apps with HTML, CSS, and JavaScript.
npm install @ionic/core
Typescript
Module System
Node Version
NPM Version
TypeScript (60.73%)
HTML (24.81%)
SCSS (10.94%)
JavaScript (2.03%)
Vue (0.95%)
CSS (0.41%)
Shell (0.11%)
Java (0.02%)
Total Downloads
64,777,926
Last Day
15,230
Last Week
241,022
Last Month
1,048,973
Last Year
12,824,694
MIT License
52,011 Stars
14,269 Commits
13,436 Forks
1,579 Watchers
184 Branches
510 Contributors
Updated on Aug 31, 2025
Latest Version
8.7.3
Package Id
@ionic/core@8.7.3
Unpacked Size
19.37 MB
Size
3.36 MB
File Count
2,721
NPM Version
11.5.2
Node Version
22.18.0
Published on
Aug 20, 2025
Cumulative downloads
Total Downloads
Last Day
30.8%
15,230
Compared to previous day
Last Week
-0.8%
241,022
Compared to previous week
Last Month
4.2%
1,048,973
Compared to previous month
Last Year
-6.3%
12,824,694
Compared to previous year
3
35
Ionic is an open source App Development Framework that makes it easy to build top quality Native and Progressive Web Apps with web technologies.
The Ionic Core package contains the Web Components that make up the reusable UI building blocks of Ionic Framework. These components are designed to be used in traditional frontend view libraries/frameworks (such as Stencil, React, Angular, or Vue), or on their own through traditional JavaScript in the browser.
Easiest way to start using Ionic Core is by adding a script tag to the CDN:
1<script type="module" src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.esm.js"></script> 2<script nomodule src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.js"></script> 3<link href="https://cdn.jsdelivr.net/npm/@ionic/core/css/ionic.bundle.css" rel="stylesheet">
Any Ionic component added to the webpage will automatically load. This includes writing the component tag directly in HTML, or using JavaScript such as document.createElement('ion-toggle')
.
Additionally, within this package is a dist/ionic.js
file and accompanying dist/ionic/
directory. These are the same files which are used by the CDN, and they're available in this package so they can be apart of an app's local development.
The @ionic/core
package can be used in simple HTML, or by vanilla JavaScript without any framework at all. Ionic also has packages that make it easier to integrate Ionic into a framework's traditional ecosystem and patterns. (However, at the lowest-level framework bindings are still just using Ionic Core and Web Components).
In addition to the default, self lazy-loading components built by Stencil, this package also comes with each component exported as a stand-alone custom element within @ionic/core/components
. Each component extends HTMLElement
, and does not lazy-load itself. Instead, this package is useful for projects already using a bundler such as Webpack or Rollup. While all components are available to be imported, the custom elements build also ensures bundlers only import what's used, and tree-shakes any unused components.
Below is an example of importing ion-badge
, and initializing Ionic so it is able to correctly load the "mode", such as Material Design or iOS. Additionally, the initialize({...})
function can receive the Ionic config.
1import { defineCustomElement } from "@ionic/core/components/ion-badge.js"; 2import { initialize } from "@ionic/core/components"; 3 4// Initializes the Ionic config and `mode` behavior 5initialize(); 6 7// Defines the `ion-badge` web component 8defineCustomElement();
Notice how we import from @ionic/core/components
as opposed to @ionic/core
. This helps bundlers pull in only the code that is needed.
The defineCustomElement
function will automatically define the component as well as any child components that may be required.
For example, if you wanted to use ion-modal
, you would do the following:
1import { defineCustomElement } from "@ionic/core/components/ion-modal.js"; 2import { initialize } from "@ionic/core/components"; 3 4// Initializes the Ionic config and `mode` behavior 5initialize(); 6 7// Defines the `ion-modal` and child `ion-backdrop` web components. 8defineCustomElement();
The defineCustomElement
function will define ion-modal
, but it will also define ion-backdrop
, which is a component that ion-modal
uses internally.
When using an overlay controller, developers will need to define the overlay component before it can be used. Below is an example of using modalController
:
1import { defineCustomElement } from '@ionic/core/components/ion-modal.js'; 2import { initialize, modalController } from '@ionic/core/components'; 3 4initialize(); 5defineCustomElement(); 6 7const showModal = async () => { 8 const modal = await modalController.create({ ... }); 9 10 ... 11}
Check out the CONTRIBUTE guide
No vulnerabilities found.