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

mobx-history

v2.0.1

Published

Mobx History

Downloads

89

Readme

mobx-history npm package GitHub issues Build Status Coverage Status

Updated to 2.0.0 to use mobx v4 as peer dependency, enjoy it. Thanks to @kwoon and @ksandin Update to 2.0.1 to use history v4.9.0 @tregusti

Mobx wrapper of history, make it observable! mobx-history object made three properties length, location, action observable, so no more listener needed!

Installation

Using npm or yarn:

$ npm install --save mobx-history
or
$ yarn add mobx-history

Use CDN

Then get the History class:

// using ES6 modules
import History from 'mobx-history'

// using CommonJS modules
var History = require('mobx-history').History

// using CDN
var History = mobxHistory.History

Usage

Assuming you know how to use history, if not, check its document.

Initalize mobx-history with history object:

import { createMemoryHistory } from 'history'
let history = new History(createMemoryHistory())

// or just change 'history' to 'mobx-history'
import { createMemoryHistory } from 'mobx-history'
var history = createMemoryHistory();

Then use mobx-history object like original history object, so few code changed in transitioning history to mobx-history. Original history object can be visited in property history.

mobx-history object made three properties length, location, action observable, so no more listener needed. It also provide a location setter to perform history.location = ... as history.push(...). call stopListen method to stop listening from original history.

Props

  • getter length
    • type: number

The number of entries in the history stack.

  • getter location
    • type: object

The current location. history.location=... would trigger history.push(...)

  • getter action
    • type: string

The current navigation action.

  • history
    • type: object

Original history object.

  • ...props

Other properties would be same as in original history object. See history document

Demo

Live example is in Codepen

  const createMemoryHistory = mobxHistory.createMemoryHistory;
  const {autorun} = mobx;

  let h = createMemoryHistory();

  autorun(()=>{console.log('pathname ' + h.location.pathname)});
  autorun(()=>{console.log('action ' + h.action)});
  autorun(()=>{console.log('length ' + h.length)});
  autorun(()=>{console.log('search ' + h.location.search)});
  // > pathname /
  // > action POP
  // > length 1
  // > search

  h.location = '/path';
  // > pathname /path
  // > action PUSH
  // > length 2

  h.push('/path2');
  // > print '/path2'
  // > length 3

  h.replace('/path3');
  // > pathname /path3
  // > action REPLACE

  h.replace({pathname:'/path3',search:'?q=1'});
  // > search ?q=1