Compare commits

...

9 Commits

Author SHA1 Message Date
Kamran Ahmed
6f343d3eb5 Add vite, vitest and playwright 2022-10-13 17:55:46 +04:00
Aroyan Bakti Setiawan
ae02653079 feat: add unfetch content 2022-10-13 20:49:02 +08:00
Aroyan
61244b6cb5 Merge branch 'kamranahmedse:master' into master 2022-10-13 20:44:51 +08:00
Aroyan
0ce47a3681 Merge branch 'kamranahmedse:master' into master 2022-10-13 20:17:18 +08:00
Aroyan
c2574c3787 Merge branch 'kamranahmedse:master' into master 2022-10-05 11:29:04 +08:00
Aroyan
4b57977cc9 Merge branch 'kamranahmedse:master' into master 2022-09-30 21:33:57 +08:00
Aroyan
e58a516572 Merge branch 'kamranahmedse:master' into master 2022-09-25 15:44:52 +08:00
Aroyan
a37fea9d5b Merge branch 'kamranahmedse:master' into master 2022-09-24 20:38:45 +08:00
Aroyan Bakti Setiawan
3daa7ef086 feat: add Set JavaScript content 2022-09-23 18:02:12 +08:00
8 changed files with 1449 additions and 900 deletions

View File

@@ -12,6 +12,9 @@
"react-advanced-topics:error-boundaries": "/roadmaps/103-react/content/101-react-advanced-topics/106-error-boundaries.md",
"react-advanced-topics:fiber-architecture": "/roadmaps/103-react/content/101-react-advanced-topics/107-fiber-architecture.md",
"react-fundamental-topics": "/roadmaps/103-react/content/100-react-fundamental-topics/readme.md",
"react-fundamental-topics:cli-tools": "/roadmaps/103-react/content/100-react-fundamental-topics/100-cli-tools/readme.md",
"react-fundamental-topics:cli-tools:create-react-app": "/roadmaps/103-react/content/100-react-fundamental-topics/100-cli-tools/100-create-react-app.md",
"react-fundamental-topics:cli-tools:vite": "/roadmaps/103-react/content/100-react-fundamental-topics/100-cli-tools/101-vite.md",
"react-fundamental-topics:create-react-app": "/roadmaps/103-react/content/100-react-fundamental-topics/100-create-react-app.md",
"react-fundamental-topics:jsx": "/roadmaps/103-react/content/100-react-fundamental-topics/101-jsx.md",
"react-fundamental-topics:components": "/roadmaps/103-react/content/100-react-fundamental-topics/102-components/readme.md",
@@ -49,6 +52,8 @@
"react-ecosystem:forms:final-form": "/roadmaps/103-react/content/102-react-ecosystem/105-forms/102-final-form.md",
"react-ecosystem:testing": "/roadmaps/103-react/content/102-react-ecosystem/106-testing/readme.md",
"react-ecosystem:testing:jest": "/roadmaps/103-react/content/102-react-ecosystem/106-testing/100-jest.md",
"react-ecosystem:testing:vitest": "/roadmaps/103-react/content/102-react-ecosystem/106-testing/103-vitest.md",
"react-ecosystem:testing:playwright": "/roadmaps/103-react/content/102-react-ecosystem/106-testing/104-playwright.md",
"react-ecosystem:testing:react-testing-library": "/roadmaps/103-react/content/102-react-ecosystem/106-testing/101-react-testing-library.md",
"react-ecosystem:testing:cypress": "/roadmaps/103-react/content/102-react-ecosystem/106-testing/102-cypress.md",
"react-ecosystem:state-management": "/roadmaps/103-react/content/102-react-ecosystem/107-state-management/readme.md",

View File

@@ -0,0 +1,8 @@
# Vite
Vite is a build tool that aims to provide a faster and leaner development experience for modern web projects.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://vitejs.dev'>Vite Website</BadgeLink>
<BadgeLink colorScheme='blue' badgeText='Official Documentation' href='https://vitejs.dev/guide'>Vite Documentation</BadgeLink>
<BadgeLink colorScheme='green' badgeText='Course' href='https://youtu.be/LQQ3CR2JTX8'>Vite Crash Course</BadgeLink>

View File

@@ -0,0 +1,3 @@
## CLI Tools
The most famous options while working with react are `create-react-app` and `vite`.

View File

@@ -0,0 +1,7 @@
# Vitest
Vitest is a fast Vite-native unit test framework with out-of-box ESM, TypeScript and JSX support.
Works on React, Vue, Svelte and more projects created with Vite
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://vitest.dev/'>Vitest Website</BadgeLink>

View File

@@ -0,0 +1,7 @@
# Playwright
Playwright Test was created specifically to accommodate the needs of end-to-end testing. Playwright supports all modern rendering engines including Chromium, WebKit, and Firefox. Test on Windows, Linux, and macOS, locally or on CI, headless or headed with native mobile emulation of Google Chrome for Android and Mobile Safari.Playwright leverages the DevTools protocol to write powerful, stable automated tests.Playwright can actually see into and control the browser rather than relying on a middle translation layer, it allows for the simulation of more insightful and relevant user scenarios.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://playwright.dev/'>Official Website: Playwright</BadgeLink>
<BadgeLink colorScheme='yellow' badgeText='Tutorial' href='https://www.browserstack.com/guide/playwright-tutorial'>Playwright Tuotorial</BadgeLink>

View File

@@ -1 +1,7 @@
# Unfetch
# unfetch
unfetch is a tiny 500b fetch "barely-polyfill"
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Official Docs' href='https://github.com/developit/unfetch#readme'>unfetch Docs</BadgeLink>

File diff suppressed because it is too large Load Diff