Skip to content

callmetwan/junctions

 
 

Repository files navigation

Junctions: Routing You Can Follow.

Built for React, using the excellent history package.

Why use Junctions?

  • It's reusable. No hard-coded URLs means truly reusable components.
  • It's simple. Everything you need in only 4 functions and 4 methods.
  • It's independent. Works great with React, but doesn't rely on it.

Demo

The best way to understand Junctions is to see it in action. With that in mind, the Junctions Website uses Junctions underneath the hood -- and logs relevant details to the console as you navigate. If you're viewing the website right now, open your developer console to take a look.

There are also a number of live demos with source. Take a look at the Raw example to see how Junctions works without any React-specific helper components, or see Basic for a typical example.

Installation

At minimum, you'll need the junctions package

npm install junctions --save

If you want <Link> and <Router> components to help integrating with React, install react-junctions

npm install react-junctions --save

Alternatively, use plain-ol' script tags with unpkg.

<script src="https://unpkg.com/junctions@0.3.0/dist/junctions.js"></script>
<script src="https://unpkg.com/react-junctions@0.3.2/dist/index.js"></script>

Getting Started

But before starting, ask yourself -- do you really need a Router? The Introduction covers this, before introducing the three main concepts you'll use with Junctions.

The next step is practice. The Basics section of the Guide will walk you through using the most important tools which Junctions provides, finishing with a full Example.

Contributing

Contributions are welcome, especially for the documentation.

To get the documentation running locally, you'll need to run npm install in both the root directories and the site directory. This is because babel looks at the root .babelrc when compiling the example files.

Once you've installed the dependencies, run npm start from the site directory, then open the browser at http://localhost:8080

npm install
cd site
npm install
npm start

About

Routing You Can Follow, for React JS

Resources

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE.md
Unknown
LICENSE-logo.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 92.8%
  • CSS 5.6%
  • HTML 1.6%