@magiclabs/ui
v0.27.4
Published
π A progressive, themeable UI framework for building magical user experiences.
Downloads
629
Maintainers
Keywords
Readme
π Magic UI
A progressive, themeable UI framework for building magical user experiences.
π Documentation
[Coming soon...]
π Installation
Integrating your app with Magic UI requires our client-side NPM package:
# Using NPM:
npm install --save @magiclabs/ui
# Using Yarn:
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:
# Using NPM:
(
export PKG=@magiclabs/ui;
npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs npm install --save-dev "$PKG@latest"
)
# Using Yarn:
(
export PKG=@magiclabs/ui;
npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs yarn add -D "$PKG@latest"
)