Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <script src="https://unpkg.com/history@4.7.2/umd/history.js"></script>
  <script src="https://unpkg.com/mobx@3.3.1/lib/mobx.umd.js"></script>
  <script src="https://unpkg.com/mobx-little-router@1.5.0-19/umd/mobx-little-router.js"></script>
</head>
<body>
</body>
</html>
 
let h = History.createMemoryHistory({
  initialEntries: ['/a']
})
let router = mobxLittleRouter.install({
  history: h,
  getContext: function() { return {} },
  routes: [
    { path: 'a' },
    { path: 'b' },
    { path: 'c' }
  ]
})
mobx.autorun(() => {
  console.log(`pathname is ${router.location.pathname}`)
})
router.start(() => 
  router.push('/b').then(() => 
    router.push('/c')
  )
)
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers