https://github.com/alejandronanez/npm-workspaces
Egghead.io course material - NPM Workspaces
https://github.com/alejandronanez/npm-workspaces
egghead-io monorepo nextjs npm-workspaces tsup vitejs
Last synced: 7 months ago
JSON representation
Egghead.io course material - NPM Workspaces
- Host: GitHub
- URL: https://github.com/alejandronanez/npm-workspaces
- Owner: alejandronanez
- Created: 2022-08-17T20:20:35.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-17T20:25:52.000Z (almost 3 years ago)
- Last Synced: 2024-12-09T03:42:07.272Z (7 months ago)
- Topics: egghead-io, monorepo, nextjs, npm-workspaces, tsup, vitejs
- Language: TypeScript
- Homepage:
- Size: 156 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction to Monorepos with NPM Workspaces
Course material for the **Introduction to Monorepos with NPM Workspaces** course on Egghead.io - [Course link](https://egghead.io/courses/introduction-to-monorepos-with-npm-workspaces-c03f500b)
## Available commands
```shell
npm run dev # run all the 3 development servers
npm run check # run all quality checks
npm run dev:utils # run the dev server for the utils package
npm run dev:blog # run the dev server for the blog package
npm run dev:dashboard # run the dev server for the dashboard package
npm run test:utils # run the tests for the utils package
npm run test:blog # run the tests for the blog package
npm run test:dashboard # run the tests for the dashboard package
npm run typecheck:utils # run the typechecker for the utils package
npm run typecheck:blog # run the typechecker for the blog package
npm run typecheck:dashboard # run the typechecker for the dashboard package
```