0.0.1 • Published 4 years ago

protect-a-deck v0.0.1

Weekly downloads
4
License
-
Repository
-
Last release
4 years ago

protect-a-deck

Protect an MDX deck from invaders 👾


Uses https://paassword.now.sh to safely store your password and then allows a static site to check against it at will.

Instalation

yarn add protect-a-deck

Usage

See details on how to extend the mdx-deck Provider here: https://github.com/jxnblk/mdx-deck/blob/master/docs/advanced.md#custom-provider-component

  1. Go to https://paassword.now.sh and get a link that will look like: https://svrlss.now.sh/api/get/rec3T73O3WNZk3IZj

  2. Copy the last part, the id, of the url. Which would be rec3T73O3WNZk3IZj from above.

  3. Extend the provider for mdx-deck like the example below passing in your id from step 2.

// example Provider.js
import React from 'react'
import Protection from 'protect-a-deck'
import { useDeck } from 'mdx-deck'

export default props => {
  const state = useDeck()

  return (
    <Protection paassword="rec3T73O3WNZk3IZj">
      {props.children}
    </Protection>
  )
}