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

@rilekstack/vite-plugin-tanstack-router-file-based

v0.0.2-development

Published

Vite plugin to handle file based routing with @tanstack/router

Downloads

52

Readme

vite-plugin-tanstack-router-file-based

This package is not meant to use in production.

Vite plugin to handle nextjs-flavoured file based routing using @tanstack/router. At the time of creation of this package, file based routing provided by Tanstack isn't nice to use and buggy.

This package uses simplified NextJS approach to handle routes.

Package generates router.generated.tsx in source root directory with router exported as routerTree. Example usage below.

Package is using root, index, layout, and not-found files to build router. URLs are build using directories names, including parameters, prepended with dollar sign. F.e../some-route/$param1/another/$param2/index.tsx is used for URLs /some-route/{param1}/another/{param2}.

All of parameters can be configured either in vite.config.js file or in tsr.config.json file.

Example route tree

pages/
├── some-route
│   ├── $param1
│   │   ├── another-route
│   │   │   └── $param2
│   │   │       ├── components
│   │   │       │   └── component.tsx
│   │   │       └── index.tsx
│   │   └── index.tsx
│   ├── index.tsx
│   └── layout.tsx
├── index.tsx
├── layout.tsx
├── not-found.tsx
└── root.tsx

Install

npm install @rilekstack/vite-plugin-tanstack-router-file-based

Usage

// vite.config.js
import { router } from 'vite-plugin-tanstack-router-file-based';

export default defineConfig({
  (...)
  plugins: [router()],
});
// src/index.tsx
import React from "react";
import ReactDOM from "react-dom/client";
import { routeTree } from "./router.generated";

import { RouterProvider, createRouter } from "@tanstack/react-router";

const root = ReactDOM.createRoot(
  document.getElementById("root") as HTMLElement
);

const router = createRouter({
  routeTree,
});

root.render(
  <React.StrictMode>
    <RouterProvider router={router} />
  </React.StrictMode>
);

API

router(config?: Config)

Config

interface Config {
  sourceRoot: string;
  root: string;
  routesDirectory: string;
  configPath: string;
  generatedRouteTree: string;
  extensions: string[];
  fileNames: {
    index: string;
    layout: string;
    notFound: string;
    root: string;
  };
}

sourceRoot: string

Path to root of source files. Default: ./src

root: string;

Absolute system path to project. Default: process.cwd()

routesDirectory string

Path to directory with routes files related to source root path. Default ./pages

configPath string

Filename of filename with configuration. Default: tsr.config.json

generatedRouteTree string

Filename of generated file. Default: router.generated.tsx

extensions string[]

Extensions of files read in order to build router tree. Default: ["tsx", "ts", "jsx", "js"]

fileNames object

File names required to build router tree. Default:

{
  index: "index";
  layout: "layout";
  notFound: "not-found";
  root: "root";
}