https://github.com/jarle/react-router-starter-kit
Starter kit for building React Router apps with AdonisJS 6
https://github.com/jarle/react-router-starter-kit
adonisjs adonisjs-framework react reactjs
Last synced: 9 months ago
JSON representation
Starter kit for building React Router apps with AdonisJS 6
- Host: GitHub
- URL: https://github.com/jarle/react-router-starter-kit
- Owner: jarle
- Created: 2023-12-26T16:11:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-10-04T19:23:28.000Z (9 months ago)
- Last Synced: 2025-10-04T21:24:13.521Z (9 months ago)
- Topics: adonisjs, adonisjs-framework, react, reactjs
- Language: TypeScript
- Homepage: https://matstack.dev/react-adonisjs/
- Size: 357 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minimal Starter Kit for @matstack/react-adonisjs
This repo contains an AdonisJS application tailored for building fullstack applications using [react-adonisjs](https://matstack.dev/react-adonisjs).
## Usage
You can create a new app using the `react-adonisjs` boilerplate by executing the following command. The command will perform the following steps.
- Clone the repo
- Install dependencies
- Copy `.env.example` to `.env`
- Set app key using `node ace generate:key` command.
- Configure the `@adonisjs/lucid` package.
- Configure the `@adonisjs/auth` package.
- Configure the `@matstack/react-adonisjs` package.
```sh
npm init adonisjs@latest -- -K="github:jarle/react-router-starter-kit"
```
After installation you can add your first React Router route by running:
```
node ace react:route hello
```