@magiclabs/ui

๐Ÿ’… A progressive, themeable UI framework for building magical user experiences.

Usage no npm install needed!

<script type="module">
  import magiclabsUi from 'https://cdn.skypack.dev/@magiclabs/ui';
</script>

README

๐Ÿ’… 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:

# 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"
)