๐
Magic UI
A progressive, themeable UI framework for building magical user experiences.
License ยท
Contributing Guide
๐ Documentation
[Coming soon...]
๐ Installation
Integrating your app with Magic UI requires our client-side NPM package:
npm install --save @magiclabs/ui
yarn add @magiclabs/ui
Install required peerDependencies
:
If using npm@>5.x
, use this shortcut (yarn
will be automatically detected, if in use):
npx install-peerdeps --dev @magiclabs/ui
Alternatively, Linux and macOS users can one of these commands:
(
export PKG=@magiclabs/ui;
npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs npm install --save-dev "$PKG@latest"
)
(
export PKG=@magiclabs/ui;
npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs yarn add -D "$PKG@latest"
)