npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-router-path-extractor-webpack-plugin

v0.1.0

Published

Webpack plugin to extract paths from React Router

Downloads

13

Readme

React Router Path Extractor Webpack Plugin

Build Status JavaScript Style Guide dependencies Status devDependencies Status

Introduction

This plugin is designed to work with StaticSiteGeneratorWebpackPlugin and SitemapPlugin. It has no standalone functionality other than to precompile a React Router routes file and pass the discovered paths into a callback function.

The callback function expects a return value consisting of an array of webpack plugins to be applied to your compiler once the paths have been resolved.

How it works

It adds a make plugin to separately compile your routes file using the loaders specified in your config.

Once compiled it executes the code in a vm and runs ReactRouter.createRoutes on the module.exports.routes named export. Finally it executes the callback function, passing the flattened paths into it.

The compiler respects your loaders and is indifferent to how you build your routes. i.e. you can use a combination of <Route> and PlainRoute to describe your routes.

Signature

new ReactRouterPathExtractorWebpackPlugin(
  routesFile: String|{routesFile: String},
  options?: {routesFile?: String},
  callback: (paths: Array<String>) => Array<InstanceOfPlugin>
)

Usage

Have a look at test suite for a complete example.

webpack.config.js

var webpack = require('webpack')
var ReactRouterPathExtractorWebpackPlugin = require('react-router-path-extractor-webpack-plugin')
var StaticSiteGeneratorWebpackPlugin = require('static-site-generator-webpack-plugin')
var SitemapWebpackPlugin = require('sitemap-webpack-plugin')

module.exports = webpack({
  entry: {
    main: ['./src/entry.js']
  },
  output: {
    path: path.resolve(__dirname, '_dist'),
    filename: '[name].[hash].js',
    libraryTarget: 'umd',
    publicPath: '/'
  },
  module: {
    loaders: [{
      test: /\.js$/,
      loader: 'babel',
      exclude: /node_modules/,
      query: {
        presets: ['react', 'es2015']
      }
    }]
  },
  plugins: [
    new ReactRouterPathExtractorWebpackPlugin(
      './src/routes.js',
      function (paths) {
        /*
         The callback receives a flat array of paths, e.g.
         [
           '/',
           '/about',
           '/about/contact'
         ]

         Return an array of path dependent webpack plugins in the callback and let
         them do all the hard work:
        */
        return [
          new StaticSiteGeneratorWebpackPlugin('main', paths),
          new SitemapWebpackPlugin('http://example.com', paths)
        ]
      }
    )
  ]
})

routes.js

import React from 'react'
import { Route, IndexRoute } from 'react-router'
import App from './components/App'
import Home from './components/Home'
import About from './components/About'
import Contact from './components/Contact'
import NotFound from './components/NotFound'

// Important: Your routes must be a named export called "routes":
// es5: module.exports.routes = ...
export const routes = (
  <Route path='/' component={App}>
    <IndexRoute component={Home} title='Home' />
    <Route path='about'>
      <IndexRoute component={About} title='About' />
      <Route path='contact' component={Contact} title='Contact' />
    </Route>
    // Exclude paths by adding the staticExclude prop:
    <Route path='exclude_this_path' staticExclude>
      // Child routes will included unless staticExclude is specified.
      <Route path='but_not_this_one' />
    </Route>
    // This catch-all will resolve to /error/index.html
    // staticName will default to '404', i.e. /404/index.html
    <Route path='*' component={NotFound} staticName='error' />
  </Route>
)

// You can always export the routes as default too for use elsewhere.
export default routes

Dynamic Routing

Dynamic Routing may be possible using a hashHistory Router within a Route component or by adding a catch-all and a bit nginx config. Example coming soon.

Report an Issue

MIT License

Copyright (c) 2016 Mbaasy, Inc

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.