Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 11 days 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 (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-17T20:25:52.000Z (about 2 years ago)
- Last Synced: 2024-10-07T02:41:42.500Z (about 1 month 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
```