All Projects → vitejs → Vite Plugin React Pages

vitejs / Vite Plugin React Pages

A vite framework for building react app. Especially suitable for document site and demos/playgrounds of react components.

Programming Languages

typescript
32286 projects

Labels

Projects that are alternatives of or similar to Vite Plugin React Pages

Blocks
A JSX-based page builder for creating beautiful websites without writing code
Stars: ✭ 4,300 (+6515.38%)
Mutual labels:  mdx
Gatsby Gitbook Starter
Generate GitBook style modern docs/tutorial websites using Gatsby + MDX
Stars: ✭ 700 (+976.92%)
Mutual labels:  mdx
Blog.hellorusk.net
Tech Blog
Stars: ✭ 28 (-56.92%)
Mutual labels:  mdx
Gatsby Starter Egghead Blog
This is an example Gatsby blog site that we use as a reference at egghead.
Stars: ✭ 525 (+707.69%)
Mutual labels:  mdx
Docs
Documentation of Vercel and other services
Stars: ✭ 663 (+920%)
Mutual labels:  mdx
Gatsby Starter Minimal Blog
Typography driven, feature-rich blogging theme with minimal aesthetics. Includes tags/categories support and extensive features for code blocks such as live preview, line numbers, and line highlighting.
Stars: ✭ 752 (+1056.92%)
Mutual labels:  mdx
Gatsby Theme Code Notes
A Gatsby theme for publishing code-related notes to your website
Stars: ✭ 370 (+469.23%)
Mutual labels:  mdx
React Display Window
A simple tool to showcase react components
Stars: ✭ 57 (-12.31%)
Mutual labels:  mdx
Ok Mdx
Browser-based MDX editor
Stars: ✭ 681 (+947.69%)
Mutual labels:  mdx
Ssasqueryanalyzer
SSASQueryAnalyzer is a tool to analyze and troubleshoot MDX queries on Analysis Services Multidimensional
Stars: ✭ 19 (-70.77%)
Mutual labels:  mdx
Fusuma
✍️Fusuma makes slides with Markdown easily.
Stars: ✭ 5,033 (+7643.08%)
Mutual labels:  mdx
Code Surfer
Rad code slides <🏄/>
Stars: ✭ 5,477 (+8326.15%)
Mutual labels:  mdx
Egghead Next
The frontend for egghead.io.
Stars: ✭ 896 (+1278.46%)
Mutual labels:  mdx
Docz
✍ It has never been so easy to document your things!
Stars: ✭ 22,020 (+33776.92%)
Mutual labels:  mdx
Mondrian
Mondrian is an Online Analytical Processing (OLAP) server that enables business users to analyze large quantities of data in real-time.
Stars: ✭ 947 (+1356.92%)
Mutual labels:  mdx
Mdx Docs
📝 Document and develop React components with MDX and Next.js
Stars: ✭ 412 (+533.85%)
Mutual labels:  mdx
Mdx Util
Utilities for working with MDX
Stars: ✭ 709 (+990.77%)
Mutual labels:  mdx
Gatsby Starter Portfolio Cara
Playful and Colorful One-Page portfolio featuring Parallax effects and animations. Especially designers and/or photographers will love this theme! Built with MDX and Theme UI.
Stars: ✭ 1,101 (+1593.85%)
Mutual labels:  mdx
Gatsby Plugin Mdx
gatsby v1 mdx plugin, for gatsby v2 see https://github.com/ChristopherBiscardi/gatsby-mdx
Stars: ✭ 50 (-23.08%)
Mutual labels:  mdx
Eslint Plugin Mdx
ESLint Plugin for MDX
Stars: ✭ 19 (-70.77%)
Mutual labels:  mdx

📘 vite-plugin-react-page

vite-plugin-react-page (vite-pages) is a React app framework powered by vite. It is very suitable for:

  • blog site
  • documentation site for your library or product
  • stories(demos) development for your React components(like storybook)

It provides many features that help developers build a React App quickly:

  • Fantastic development experience. Start the local development server in a blink, even when you have many pages. Hot module replacement works with React and Mdx, so you can get instant feedback when you edit your code.
  • Filesystem based routing. By following a simple filesystem routing convention, It is easy to create, locate and develop pages. You don't need to worry about routing configuration. For advanced users, you can tell vite-pages how to find page files, so that vite-pages can work with any project file structure.
  • Support Mdx. You can write content with either "normal React" or Mdx. Normal Reactjs is more flexible and composable. While Mdx is more readable and easy to edit. You can choose the proper format for your task. These formats can import each other like normal esModules.
  • Powerful theme customization. Vite-pages itself doesn't render any concrete DOM node. You can customize anything on the page with theme. It is easy to write a theme that is sharable and configurable. If you use typescript, the users of your theme will get type-check and intelliSense.
  • Automatic code splitting based on pages. Visitors don't need to download the whole app, they only load page data as needed.
  • Support SSR out of the box. By pre-rendering your app into HTML at buildtime, users can see the content before any JS is loaded.

Getting stated

  1. initialize a vite-pages project:
    • use npm init @csr632/vite-app my-app --template react-pages-app to initialize an app starter, or
    • use npm init @csr632/vite-app my-lib --template react-pages-lib to initialize a library starter.
  2. npm install
  3. npm run dev and play with the local dev envirenment.
  4. npm run build.
  5. npm run ssr. You can disable javascript in your browser, to verify if it can still render.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].