https://github.com/adhamu/monorepo-skeleton
A skeleton boilerplate mono repo for a React app with an API backend using Lerna and Yarn Workspaces.
https://github.com/adhamu/monorepo-skeleton
eslint jest koa react stylelint supertest testing-library typescript vite
Last synced: 2 months ago
JSON representation
A skeleton boilerplate mono repo for a React app with an API backend using Lerna and Yarn Workspaces.
- Host: GitHub
- URL: https://github.com/adhamu/monorepo-skeleton
- Owner: adhamu
- Created: 2025-03-20T10:23:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-29T10:19:36.000Z (about 1 year ago)
- Last Synced: 2025-10-31T07:39:19.845Z (8 months ago)
- Topics: eslint, jest, koa, react, stylelint, supertest, testing-library, typescript, vite
- Language: TypeScript
- Homepage:
- Size: 176 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Monorepo Skeleton
A skeleton boilerplate mono repo for a React app with an API backend using Lerna and Yarn Workspaces.
## Technologies
- React
- Typescript
- Koa
## Tooling
- [Vite](https://vite.dev)
- [React Router](https://reactrouter.com)
- [Zero](https://github.com/adhamu/zero)
## Testing
- Jest
- Testing Library
- Supertest
## Getting Started
This repository is set as a template.
You can click the `Use this template` on the repository homepage to create a new repository based off this one.
Once you have done so.
```sh
$ git clone https://github.com//
$ cd
$ yarn
```
## Development
```sh
$ yarn dev
```
Open up [http://localhost:5173](http://localhost:5173)
## Workspace command examples
```sh
# Add a dependency
yarn workspace ui add lodash -D
# Run a script
yarn workspace api test
# Add a global dependency
yarn add lodash -W
```