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

screen-viewer

v1.2.3

Published

Module for getting screen type of screen width

Downloads

17

Readme

Build Status js-standard-style npm version

RxJS ScreenViewer

Module for definition screen type by RXJS. There is Flow in code.

For why? More comfortably using adaptive site created by screen types, than using particular sizes. This addition absctract layer give to you flexible and maintainable.

Installation

ES6 via npm

npm i screen-viewer

Dependencies

For compile code with babel, we should install package:

# For using ES6 import
npm i babel-plugin-syntax-dynamic-import

# For compile with flowtype
npm i babel-preset-flow

# For strip flowtype declarations
npm i babel-plugin-transform-flow-strip-types

# Module use object spread operator
npm i babel-plugin-transform-object-rest-spread

ScreenViewer as global object in browser

Pass to your html page code below

<!-- Include RxJS library -->
<script src="https://unpkg.com/rxjs/bundles/Rx.min.js"></script>

<!-- Include screen-viewer module -->
<script src="https://unpkg.com/screen-viewer/dist/global/screen-viewer.min.js"></script>

And use in you scripts some as:

var resize$ = Rx.Observable
  .fromEvent(window, 'resize')
  .map(function(event) { return event.target.innerWidth });

ScreenViewer.init$([ resize$ ])
  .subscribe(function(e) {
    console.log(e)
  });

How it works

Module define some kind of size (in this case it's screen width), that it receive and compare it with needed screen type.

For example, module receive value 940, that corresponds screen type tablet. All corresponds values are shown below. If value is 1300, then it will be desktop.

/**
 * Screen types map
 * @type {Object}
 */
screenMap = {

    // Everything is less
    map: {
        '768': 'mobile',
        '1280': 'tablet'
    },

    // type as default
    default: 'desktop'
}

Module works by Rx streams. In our case it works with resizes of screen. Which is stream will be observable decide developer.

In common cases uses free streams by three events: - Full page loaded (onload) - Full document loaded (DOMContentLoaded) - Resize screen (onresize)

Usage

Set module (it use RxJS, that why module shold be accessible in environment).

index.js:

// ES6 modules
import screenViewer from 'screen-viewer';

// or CommonJS
const screenViewer = require('screen-viewer').default;

You can set up types map, if you need it.

screenViewer.setup({

    // Common types
    map: {
        '320': 'mobile',
        '700': 'tablet'
    },

    // As default
    default: 'desktop'
})

init$ method receive array of streams filtered by size of screen.

import { Observable } from 'rxjs/Rx';

/**
 * Observable after full load page
 * @type {Rx}
 */
const load$ = Observable
  .fromEvent(window, 'load')
  .map(() => window.innerWidth)

/**
 * Observable from DOMContentLoaded event (as ready event jQuery)
 * @type {Rx}
 */
const ready$ = Observable
  .fromEvent(document, 'DOMContentLoaded')
  .map(event => event.target.innerWidth)

/**
 * Observable from resize event
 * @type {Rx}
 */
const resize$ = Observable
  .fromEvent(window, 'resize')
  .map(event => event.target.innerWidth)

/**
 * Init module
 * @type {Rx}
 */
const screen$ = screenViewer.init$([ load$, ready$, resize$ ])

Now we can subscribe to stream, that will change data in moment when type of screen changed.

screen$.subscribe(console.log)