Socket
Book a DemoInstallSign in
Socket

nuxt-prevent-multitabs

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nuxt-prevent-multitabs

NuxtJS module to prevent opening the app in multiple tabs

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

nuxt-prevent-multitabs

NuxtJS module to prevent opening the app in multiple tabs

Table of contents

Setup

  • Add nuxt-prevent-multitabs dependency to your project:
npm install nuxt-prevent-multitabs
  • Create the layout to be used when the client opens another tab. An example:
image
<template>
  <main class="section">
    <div class="container">
      <div class="has-text-centered">
        <b-icon class="mb-2" icon="alert-circle" size="is-large" />
        <h1 class="is-size-4 has-text-weight-bold">
          Cannot open multiple windows
        </h1>
        <div class="mt-10">
          <p>APP_NAME is already open in another window.</p>
          <p>Make sure you close it before opening a new one.</p>
        </div>
        <b-button type="is-primary mt-8" rounded @click="reload()">
          Click here to access
        </b-button>
      </div>
    </div>
  </main>
</template>

<script lang="ts">
  import Vue from 'vue'
  export default Vue.extend({
    methods: {
      reload(): void {
        location.reload()
      },
    },
  })
</script>
  • Add nuxt-prevent-multitabs module and configuration to nuxt.config.js:
export default {
  // ...other config options
  modules: ["nuxt-prevent-multitabs"];
  preventMultitabs: {
    layout: 'multitab', // optional
  }
}

Options

layout

  • Type: String
  • Default: multitab

The layout to be used when the client opens another tab

License

See the LICENSE file for license rights and limitations (MIT).

FAQs

Package last updated on 26 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.