Gathering detailed insights and metrics for @pixeloven/react-router-config
Gathering detailed insights and metrics for @pixeloven/react-router-config
Gathering detailed insights and metrics for @pixeloven/react-router-config
Gathering detailed insights and metrics for @pixeloven/react-router-config
Framework for building React applications. Supports SSR, React 16 and webpack4
npm install @pixeloven/react-router-config
Typescript
Module System
Node Version
NPM Version
TypeScript (74.85%)
MDX (15.11%)
JavaScript (5.9%)
EJS (2.6%)
SCSS (0.52%)
Makefile (0.32%)
CSS (0.27%)
Shell (0.23%)
Dockerfile (0.2%)
Total Downloads
14,496
Last Day
6
Last Week
136
Last Month
153
Last Year
374
MIT License
9 Stars
1,850 Commits
5 Forks
6 Watchers
16 Branches
12 Contributors
Updated on Aug 25, 2024
Minified
Minified + Gzipped
Latest Version
6.0.0-beta.2
Package Id
@pixeloven/react-router-config@6.0.0-beta.2
Unpacked Size
26.91 kB
Size
6.87 kB
File Count
33
NPM Version
lerna/3.16.4/node@v10.16.0+x64 (linux)
Node Version
10.16.0
Cumulative downloads
Total Downloads
Last Day
-57.1%
6
Compared to previous day
Last Week
750%
136
Compared to previous week
Last Month
1,175%
153
Compared to previous month
Last Year
-50.2%
374
Compared to previous year
Pixel Oven React router config.
See our website pixeloven-react-router-config for more information or the issues associated with this package.
Using npm:
1npm install --save @pixeloven/react-router-config
or using yarn:
1yarn add @pixeloven/react-router-config
Note this package has currently not been tested for native route configuration.
This packages was meant to help unify client and server route configurations. To start we should make sure that we split our code base into three sections to clearly designate each code path.
project
└── src
├── client
├── server
└── shared
To start let's define our route configuration. Create a file routes.{js,ts}
in the shared
directory.
shared
└── routes.ts
In this file create we'll create our route definitions.
1import { Home } from "@shared/components/pages"; 2import { Default } from "@shared/components/templates"; 3 4/** 5 * Defines routes for both client and server 6 * @description Nested routes allow for pages to share templates. 7 */ 8const routes = [ 9 { 10 component: Default, 11 routes: [ 12 // Home Page 13 { 14 component: Home, 15 exact: true, 16 path: (parentPath: string) => `${parentPath}/`, 17 }, 18 ], 19 }, 20]; 21 22export default routes;
Next let's implement our shared Routes component. In the example above we created a simple nested structure with Default as out template
and Home as our page
. First up we need to add out Routes
component to our Application.
1import { Routes, RouteProps } from "@pixeloven/react-router-config"; 2import routes from "@shared/routes"; 3 4interface Props { 5 routes: RouteProps[]; 6} 7 8class App extends React.Component<Props> { 9 public render(): React.ReactNode { 10 return <Routes as="switch" config={routes} /> 11 } 12}
Of course this next step is option but here to highlight that nested routes are supported. For this example we have defined a simple Default template that might have shared components common across our application.
1import { Routes, RouteComponentProps } from "@pixeloven/react-router-config"; 2 3class Default extends React.Component<RouteComponentProps> { 4 public render() { 5 return <Routes as="switch" config={routes} /> 6 } 7}
Finally we arrive home with our simple little page.
1import { RouteComponentProps } from "@pixeloven/react-router-config"; 2 3class Home extends React.Component<RouteComponentProps> { 4 public render() { 5 return <div>I'm Home!</div>; 6 } 7}
On both the client and server side we should integrate our unified routes with our application like so.
1import { Router } from "@pixeloven/react-router-config"; 2import { App } from "@shared/components"; 3import routes from "@shared/routes"; 4 5//... 6 7/** 8 * Parent Path or sometimes called base path tells the config where all routes start. 9 * Defaults to "/" 10 */ 11const parentPath = "/example/"; 12const routeConfig = Router.getConfig(routes, parentPath); 13 14<App routes={routeConfig} /> 15
At this point it is up to your application structure to determine the best approach for this step. This configuration also adds some opinions about how to fetch data from the server side but doesn't offer up any requirements for how that data is then used.
For example if we wanted to fetch data on the server side to push into our application state we might do something like the following.
1import { matchRoutes } from "@pixeloven/react-router-config"; 2import routes from "@shared/routes"; 3 4//... 5 6const matchedRoutes = Router.getMatches(routes, { 7 as: "switch", 8 path: req.path // Ex: Express request object 9}); 10matchedRoutes.forEach(matchedRoute => { 11 if (matchedRoute.route.fetchData) { 12 matchedRoute.route.fetchData( 13 store.dispatch, 14 matchedRoute.matched.params, 15 ); 16 } 17});
Now in this example we are passing dispatch in for use to presumably dispatch actions for some side-effects. Currently this feature has a dependency on redux.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 4/16 approved changesets -- score normalized to 2
Reason
project is archived
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
130 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-03-24
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More