frontend-hamroun 1.2.27 → 1.2.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/README.md +7 -0
  2. package/bin/banner.js +0 -0
  3. package/bin/cli-utils.js +0 -0
  4. package/bin/cli.js +536 -598
  5. package/package.json +1 -1
  6. package/templates/fullstack-app/README.md +37 -0
  7. package/templates/fullstack-app/build/main.css +664 -0
  8. package/templates/fullstack-app/build/main.css.map +7 -0
  9. package/templates/fullstack-app/build/main.js +682 -0
  10. package/templates/fullstack-app/build/main.js.map +7 -0
  11. package/templates/fullstack-app/build.ts +211 -0
  12. package/templates/fullstack-app/index.html +26 -3
  13. package/templates/fullstack-app/package-lock.json +2402 -438
  14. package/templates/fullstack-app/package.json +24 -9
  15. package/templates/fullstack-app/postcss.config.js +6 -0
  16. package/templates/fullstack-app/process-tailwind.js +45 -0
  17. package/templates/fullstack-app/public/_redirects +1 -0
  18. package/templates/fullstack-app/public/route-handler.js +47 -0
  19. package/templates/fullstack-app/public/spa-fix.html +17 -0
  20. package/templates/fullstack-app/public/styles.css +768 -0
  21. package/templates/fullstack-app/public/tailwind.css +15 -0
  22. package/templates/fullstack-app/server.js +101 -44
  23. package/templates/fullstack-app/server.ts +402 -39
  24. package/templates/fullstack-app/src/README.md +55 -0
  25. package/templates/fullstack-app/src/client.js +83 -16
  26. package/templates/fullstack-app/src/components/Layout.tsx +45 -0
  27. package/templates/fullstack-app/src/components/UserList.tsx +27 -0
  28. package/templates/fullstack-app/src/config.ts +42 -0
  29. package/templates/fullstack-app/src/data/api.ts +71 -0
  30. package/templates/fullstack-app/src/main.tsx +219 -7
  31. package/templates/fullstack-app/src/pages/about/index.tsx +67 -0
  32. package/templates/fullstack-app/src/pages/index.tsx +30 -60
  33. package/templates/fullstack-app/src/pages/users.tsx +60 -0
  34. package/templates/fullstack-app/src/router.ts +255 -0
  35. package/templates/fullstack-app/src/styles.css +5 -0
  36. package/templates/fullstack-app/tailwind.config.js +11 -0
  37. package/templates/fullstack-app/tsconfig.json +18 -0
  38. package/templates/fullstack-app/vite.config.js +53 -6
  39. package/templates/ssr-template/readme.md +50 -0
  40. package/templates/ssr-template/src/client.ts +46 -14
  41. package/templates/ssr-template/src/server.ts +190 -18
package/README.md CHANGED
@@ -20,6 +20,13 @@ A lightweight JavaScript framework with Virtual DOM and hooks implementation ins
20
20
 
21
21
 
22
22
 
23
+
24
+
25
+
26
+
27
+
28
+
29
+
23
30
  ```bash
24
31
  npm install frontend-hamroun
25
32
  ```
package/bin/banner.js ADDED
File without changes
File without changes