UNPKG

1.26 kBMarkdownView Raw
1# @ionic/angular
2
3Ionic Angular specific building blocks on top of [@ionic/core](https://www.npmjs.com/package/@ionic/core) components.
4
5
6## Related
7
8* [Ionic Core Components](https://www.npmjs.com/package/@ionic/core)
9* [Ionic Documentation](https://ionicframework.com/docs/)
10* [Ionic Forum](https://forum.ionicframework.com/)
11* [Ionicons](http://ionicons.com/)
12* [Stencil](https://stenciljs.com/)
13* [Stencil Worldwide Slack](https://stencil-worldwide.herokuapp.com/)
14* [Capacitor](https://capacitor.ionicframework.com/)
15
16
17## License
18
19* [MIT](https://raw.githubusercontent.com/ionic-team/ionic/main/LICENSE)
20
21## Testing ng-add in ionic
22
231. Pull the latest from `main`
242. Build ionic/angular: `npm run build`
253. Run `npm link` from `ionic/angular/dist` directory
264. Create a blank angular project
27
28```
29ng new add-test
30// Say yes to including the router, we need it
31cd add-test
32```
33
345. To run schematics locally, we need the schematics-cli (once published, this will not be needed)
35
36```
37npm install @angular-devkit/schematics-cli
38```
39
406. Link `@ionic/angular`
41
42```
43npm link @ionic/angular
44```
45
46
477. Run the local copy of the ng-add schematic
48
49```
50$ npx schematics @ionic/angular:ng-add
51```
52
53
54You'll now be able to add ionic components to a vanilla Angular app setup.