[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]cjs/2023-06-15 18:18 -  
[DIR]es/2023-06-15 18:18 -  
[DIR]esm/2023-06-15 18:18 -  
[DIR]modules/2023-06-15 18:18 -  
[DIR]node_modules/2023-06-15 18:21 -  
[DIR]umd/2023-06-15 18:18 -  
[   ]LICENSE1985-10-26 08:15 1.1K 
[   ]MemoryRouter.js1985-10-26 08:15 127  
[   ]Prompt.js1985-10-26 08:15 115  
[TXT]README.md1985-10-26 08:15 1.3Kd7c1522 post receive test [كارل مبارك]
[   ]Redirect.js1985-10-26 08:15 119  
[   ]Route.js1985-10-26 08:15 113  
[   ]Router.js1985-10-26 08:15 115  
[   ]StaticRouter.js1985-10-26 08:15 127  
[   ]Switch.js1985-10-26 08:15 115  
[   ]generatePath.js1985-10-26 08:15 127  
[   ]index.js1985-10-26 08:15 181  
[   ]matchPath.js1985-10-26 08:15 121  
[   ]package.json2023-06-15 18:21 2.4K 
[   ]warnAboutDeprecatedCJSRequire.js1985-10-26 08:15 970  
[   ]withRouter.js1985-10-26 08:15 123  
# react-router

Declarative routing for [React](https://facebook.github.io/react).

## Installation

Using [npm](https://www.npmjs.com/):

    $ npm install --save react-router

**Note:** This package provides the core routing functionality for React Router, but you might not want to install it directly. If you are writing an application that will run in the browser, you should instead install `react-router-dom`. Similarly, if you are writing a React Native application, you should instead install `react-router-native`. Both of those will install `react-router` as a dependency.

Then with a module bundler like [webpack](https://webpack.github.io/), use as you would anything else:

```js
// using ES6 modules
import { Router, Route, Switch } from "react-router";

// using CommonJS modules
var Router = require("react-router").Router;
var Route = require("react-router").Route;
var Switch = require("react-router").Switch;
```

The UMD build is also available on [unpkg](https://unpkg.com):

```html
<script src="https://unpkg.com/react-router/umd/react-router.min.js"></script>
```

You can find the library on `window.ReactRouter`.

## Issues

If you find a bug, please file an issue on [our issue tracker on GitHub](https://github.com/remix-run/react-router/issues).

## Credits

React Router is built and maintained by [Remix Software](https://remix.run).