New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

ipfs-react-router

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ipfs-react-router

React Router extension for IPFS style paths

latest
npmnpm
Version
0.2.2
Version published
Maintainers
1
Created
Source

IPFS React Router

npm GitHub Workflow Status

Better routing for IPFS websites when using React Router

An alternative to BrowserRouter or HashRouter in React Router that sets the basename (website root url path) dependent on how the site is being served over IPFS.

A site using the IpfsRouter can be served with working routing from all of the following:

Out of the box BrowserRouter will only allow one basename, forcing you to use HashRouter if you are intending to serve the site over an IPFS HTTP gateway. IpfsRouter scans the current url to establish which context it is being used in: domain root, IPFS over public gateway, IPNS over public gateway, then sets the basename accordingly.

Install

npm install --save ipfs-react-router

Usage

React Router expects a top level Router component to provide access to the history API. IpfsRouter is a drop in replacement for BrowserRouter.

import React from 'react'
import { Route, Switch } from 'react-router-dom'
import IpfsRouter from 'ipfs-react-router'

function App() {
  return (
    <div className="App">
      <IpfsRouter>
        <Switch>
          <Route exact path="/">
            <h2>Homepage</h2>
          </Route>
          <Route path="/another">
            <h2>Another</h2>
          </Route>
          <Route path="*">
            <p>Not found</p>
          </Route>
        </Switch>
      </IpfsRouter>
    </div>
  )
}

export default App

Contributing

PRs accepted.

To run the tests (jest):

yarn test

Eslint and prettier are used for linting:

yarn lint

To auto-fix linting issues:

yarn lint:fix

License

MIT © John Kane

Keywords

IPFS

FAQs

Package last updated on 27 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts