@syncstreamai/syncstream
v0.3.11
Published
Sign in and stream through Spotify or Apple Music
Downloads
651
Readme
Table of Contents
Additional Reading
Getting Started
- Documentation can be found here: docs.syncstream.ai
npm install @syncstreamai/syncstream
# or
yarn add @syncstreamai/syncstream
import { OneTap, SyncstreamProvider } from "@syncstreamai/syncstream";
import "@syncstreamai/syncstream/dist/index.css";
const App = () => {
return (
<div
style={{
background: "black",
width: "100vw",
height: "100vh",
}}
>
<SyncstreamProvider clientId="EXAMPLE_CLIENT_ID">
<OneTap contextUri="spotify:artist:2hlmm7s2ICUX0LVIhVFlZQ" />
</SyncstreamProvider>
</div>
);
};
export default App;
Contributing to Syncstream
If you would like to become a Syncstream contributor, the first step is to read the contributing guide here in its entirety.