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

vue-browser-state

v3.0.2

Published

Various browser-related implementations for vue-reactivator

Downloads

70

Readme

Vue Browser State

npm

Vue Browser State is a collection of tiny browser-related implementations (around 150 bytes minified & gzipped each) for vue-reactivator.

It features reactive properties representing:

Motivation

Tracking browser state can be tiring since you have to declare a data property, set up an event listener, hold a reference to the event handler and detach it on component destruction.

This package contains some common browser states and makes using them as reactive properties easy.

See this example which outputs the current size of the browser viewport:

<template>
  <div>
    Your browser viewport dimensions are {{ size[0] }}x{{ size[1] }} pixels.
  </div>
</template>

<script>
import reactivator from 'vue-reactivator'
import { viewportSize } from 'vue-browser-state'

export default {
  mixins: [
    reactivator({
      size: viewportSize
    })
  ]
}
</script>

See it in action

You can take a look at the example above in CodeSandbox. Play around a little bit and resize the preview window, and you will see the numbers update immediately.

Installation

Vue Browser State is available on npm:

npm install vue-reactivator
npm install vue-browser-state

After installing, you can include as usual

// CommonJS
const browserState = require('vue-browser-state')

// ES module
import * as browserState from 'vue-browser-state'

Want to use it in the browser directly? Try unpkg:

<script src="https://unpkg.com/vue-reactivator"></script>
<script src="https://unpkg.com/vue-browser-state"></script>

Note: The implementations are stored in the vueBrowserState global variable.

Usage

See how to use implementations with Reactivator in the example above or in the Reactivator docs.

Viewport Size

import { viewportSize } from 'vue-browser-state'

The size of the viewport as a [width, height] array, equals [window.innerWidth, window.innerHeight].

SSR value: undefined

Scroll Position

import { pageScroll } from 'vue-browser-state'

The scroll position on the page as an [x, y] array, equals [window.scrollX, window.scrollY].

SSR value: [0, 0]

Mouse Position

import { mousePosition } from 'vue-browser-state'

The mouse position as an [x, y] array, relative to the document root.

SSR value: undefined

Attention! This implementation has no initial value as it can only be read when first moving the mouse.

Internet Connection

import { online } from 'vue-browser-state'

Whether the browser is currently connected to the internet (via navigator.onLine).

SSR value: true

Ready State

import { readyState } from 'vue-browser-state'

The loading state of the current document, as represented by document.readyState.

SSR value: "loading"

Page Visibility

import { visible } from 'vue-browser-state'

Whether or not the page is currently visible, according to document.hidden.

SSR value: true

URL Anchor

import { hash } from 'vue-browser-state'

The anchor attached to the current URL (without the leading #).

SSR value: ""

Browser Language

import { language } from 'vue-browser-state'

The language the user's browser is requesting (per navigator.language).

SSR value: undefined