npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@simpleotp/vue

v1.2.0

Published

# **Installation**: First, make sure you have the `@simpleotp/core` library installed in your project since the Vue Simple OTP plugin depends on it. Make sure to install this plugin as well:

Downloads

2

Readme

simpleotp-sdk-js-vue

Installation:

First, make sure you have the @simpleotp/core library installed in your project since the Vue Simple OTP plugin depends on it. Make sure to install this plugin as well:

npm install @simpleotp/core
npm install @simpleotp/vue

Then, you need to install the Vue plugin in your Vue project. You can do this by importing the plugin and installing it using Vue's createApp or Vue.use method. Typically, you would do this in your main Vue application file (e.g., main.js or main.ts).

import { createApp } from 'vue';
import SimpleOTPPlugin from '@simpleotp/vue'; // Import the plugin

const app = createApp(App);

// Install the SimpleOTP plugin with your configuration options
app.use(SimpleOTPPlugin, {
  siteID: 'your-site-id', // This will be given to you after you sign up for a Simple OTP subscription and create a site
  apiURL: 'your-api-url' // Optional, can be null - only used for self hosting
});

app.mount('#app');

Usage:

After installing the plugin, you can use it in any Vue component by injecting it using the useSimpleOTP function. Here's an example of how to use the sign-in flow, the auth flow, and the sign-out flow in different Vue components using Tailwind CSS for styling:

SignIn:

<template>
  <div class="flex min-h-full flex-1 flex-col justify-center px-6 py-12 lg:px-8">
    <div class="sm:mx-auto sm:w-full sm:max-w-sm">
      <h2 class="mt-10 text-center text-2xl font-bold leading-9 tracking-tight text-white">
        Sign in to your account
      </h2>
    </div>
    <div class="mt-5 sm:mx-auto sm:w-full sm:max-w-sm">
      <form @submit="signIn" class="space-y-6">
        <div v-if="signInStatus?.code in [SignInStatusCode.InternalServerError.description, SignInStatusCode.InvalidSite.description, SignInStatusCode.SiteNotFound.description]"
          class="bg-red-100 border border-red-400 text-red-700 px-4 py-3 rounded relative" role="alert">
          <span class="block sm:inline">{{ signInStatus.message }}</span>
        </div>
        <div v-else-if="signInStatus?.code && signInStatus?.code !== SignInStatusCode.OK.description" class="bg-yellow-100 border border-yellow-400 text-yellow-700 px-4 py-3 rounded relative" role="alert">
          <span class="block sm:inline">{{ signInStatus.message }}</span>
        </div>
        <div>
          <label for="email" class="block text-sm font-medium leading-6 text-white">
            Email address
          </label>
          <div class="mt-2">
            <input id="email" v-model="email" name="email" type="email" autocomplete="email" required
              class="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6" />
          </div>
        </div>
        <div>
          <button type="submit" :disabled="!email">Sign In</button>
        </div>
        <p class="mt-10 text-center text-sm text-gray-500">
          We'll send a magic sign in link to your email when you click "Sign in," even if you don't have an account
          yet.
        </p>
      </form>
    </div>
  </div>
</template>

<script setup>
import { SignInStatusCode } from '@simpleotp/core'
import { useSimpleOTP } from '@simpleotp/vue'
import { ref } from 'vue'
import { useRouter } from 'vue-router'

const props = defineProps({
  email: {
    type: String,
    required: false
  }
})
const router = useRouter()
const simpleOTP = useSimpleOTP()

const email = ref(props.email)
const isLoading = ref(false)
const signInStatus = ref(null)

async function signIn(e) {
  e.preventDefault()
  
  isLoading.value = true
  signInStatus.value = await simpleOTP.signIn(email.value)
  if (signInStatus.value.code === SignInStatusCode.OK.description) {
    router.push({ path: '/sign-in/confirmation', query: { email: email.value } })
  } else {
    isLoading.value = false
  }
}

if (simpleOTP.isAuthenticated()) {
  router.push({ path: '/' })
}
</script>

Auth:

<template>
  <div class="flex min-h-full flex-1 flex-col justify-center px-6 py-12 lg:px-8">
    <div class="sm:mx-auto sm:w-full sm:max-w-sm">
      <h2 class="mt-10 text-center text-2xl font-bold leading-9 tracking-tight text-white">
        Authentication
      </h2>
    </div>
    <div class="mt-5 sm:mx-auto sm:w-full sm:max-w-sm">
      <span v-if="!authErrorMessage" class="text-2xl font-sans text-white">
        Authenticating you, one moment...
      </span>
      <span v-else class="text-2xl font-sans text-white">
        There was an error authenticating you: {{ authErrorMessage }}
      </span>
    </div>
  </div>
</template>

<script async setup>
  import { onMounted, ref } from 'vue'
  import { useSimpleOTP } from '@simpleotp/vue'
  import { AuthStatusCode } from '@simpleotp/core'
  import { useRouter } from 'vue-router'
  const simpleOTP = useSimpleOTP()
  const router = useRouter()
  const authErrorMessage = ref(null)

  onMounted(async () => {
    const authResponse = await simpleOTP.authWithURLCode()
    if (authResponse.code !== AuthStatusCode.OK.description) {
      authErrorMessage.value = authResponse.message
    } else {
      router.push({ path: '/' })
    }
  })
</script>

SignOut:

<template>
  <a href="#">
    <!-- User Icon goes here -->
    <span @click="signIn" v-if="!isAuthenticated">&nbsp;Sign in <span aria-hidden="true">&rarr;</span></span>
    <span @click="signOut" v-else>&nbsp;Sign out <span aria-hidden="true">&rarr;</span></span>
  </a>
</template>

<script setup>
  import { useSimpleOTP } from '@simpleotp/vue'
  import { useRouter } from 'vue-router'
  const simpleOTP = useSimpleOTP()
  const router = useRouter()

  const isAuthenticated = simpleOTP.isAuthenticatedRef()

  function signIn() {
    router.push('/sign-in')
  }

  function signOut() {
    simpleOTP.signOut()
    router.push('/')
  }
</script>

In this example, the Vue component uses the useSimpleOTP function to inject the VueSimpleOTP instance, allowing you to access its methods and state.

Methods and State:

The VueSimpleOTP class extends the SimpleOTP class and provides methods like authWithURLCode, signOut, and access to read-only references to isAuthenticated and user. You can call these methods and use the state in your Vue component's setup function, as shown in the example above.

  • simpleOTP.authWithURLCode(): This method is used for authentication with a URL code.
  • simpleOTP.signOut(): This method signs the user out.
  • simpleOTP.isAuthenticatedRef(): This function returns a read-only reference to the user's authentication status.
  • simpleOTP.getUserRef(): This function returns a read-only reference to the user object.

By following these steps, you can integrate the provided code into your Vue project and use the @simpleotp/core library with the added convenience of Vue.js features such as reactive state management and component composition.