history
history
is a JavaScript library that lets you easily manage session history in browsers, testing environments, and (soon, via React Native) native devices. history
abstracts away the differences in these different platforms and provides a minimal API that lets you manage the history stack, navigate, confirm navigation, and persist state between sessions. history
is library-agnostic and may easily be included in any JavaScript project.
Docs & Help
For questions and support, please visit our channel on Reactiflux or Stack Overflow. The issue tracker is exclusively for bug reports and feature requests.
Installation
Using npm:
$ npm install history
Then with a module bundler like webpack, use as you would anything else:
import { createHistory } from 'history'
var createHistory = require('history').createHistory
The UMD build is also available on npmcdn:
<script src="https://npmcdn.com/history/umd/History.min.js"></script>
You can find the library on window.History
.
Basic Usage
A "history" encapsulates navigation between different screens in your app, and notifies listeners when the current screen changes.
import { createHistory } from 'history'
let history = createHistory()
let unlisten = history.listen(location => {
console.log(location.pathname)
})
history.push({
pathname: '/the/path',
search: '?a=query',
state: { the: 'state' }
})
unlisten()
You can find many more examples in the documentation!
Thanks
A big thank-you to Dan Shaw for letting us use the history
npm package name! Thanks Dan!
Also, thanks to BrowserStack for providing the infrastructure that allows us to run our build in real browsers.