├── .gitignore ├── .npmrc ├── README.md ├── netlify.toml ├── package.json ├── src ├── app.d.ts ├── app.html ├── components │ ├── HotSiteCard.svelte │ ├── HotSites.svelte │ ├── SimpleButton.svelte │ ├── SiteTitle.svelte │ └── pageList │ │ ├── Card.svelte │ │ ├── CategoryTitle.svelte │ │ └── List.svelte ├── lib │ ├── customIcon │ │ └── customIcon.json │ └── images │ │ ├── github.svg │ │ ├── logos │ │ ├── AntDesign.svg │ │ ├── Astro.svg │ │ ├── Bun.svg │ │ ├── Esbuild.svg │ │ ├── LeetCode.svg │ │ ├── Nuxt.svg │ │ ├── Qwik.svg │ │ ├── React.svg │ │ ├── Rollup.svg │ │ ├── Solid.svg │ │ ├── Svelte.svg │ │ ├── TailwindCSS.svg │ │ ├── UnoCSS.svg │ │ ├── Vite.svg │ │ ├── Vue.svg │ │ ├── Webpack.svg │ │ └── vant.jpg │ │ ├── svelte-logo.svg │ │ ├── svelte-welcome.png │ │ └── svelte-welcome.webp ├── routes │ ├── +layout.svelte │ ├── +page.svelte │ ├── +page.ts │ ├── Header.svelte │ ├── ai │ │ ├── +page.svelte │ │ └── +page.ts │ ├── home │ │ ├── CustomSites.svelte │ │ └── FormModal.svelte │ └── styles.css ├── types │ └── index.d.ts └── utils │ ├── aiSites │ ├── aiUtilSites.ts │ └── index.ts │ ├── hotSites.ts │ └── sites │ ├── algorithm.ts │ ├── blog.ts │ ├── echarts.ts │ ├── index.ts │ ├── ossSites.ts │ ├── spec.ts │ ├── techSites.ts │ ├── utilSites.ts │ └── weekly.ts ├── static ├── favicon.svg └── robots.txt ├── svelte.config.js ├── tsconfig.json ├── uno.config.ts └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/README.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/package.json -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/app.html -------------------------------------------------------------------------------- /src/components/HotSiteCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/components/HotSiteCard.svelte -------------------------------------------------------------------------------- /src/components/HotSites.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/components/HotSites.svelte -------------------------------------------------------------------------------- /src/components/SimpleButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/components/SimpleButton.svelte -------------------------------------------------------------------------------- /src/components/SiteTitle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/components/SiteTitle.svelte -------------------------------------------------------------------------------- /src/components/pageList/Card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/components/pageList/Card.svelte -------------------------------------------------------------------------------- /src/components/pageList/CategoryTitle.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/components/pageList/CategoryTitle.svelte -------------------------------------------------------------------------------- /src/components/pageList/List.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/components/pageList/List.svelte -------------------------------------------------------------------------------- /src/lib/customIcon/customIcon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/customIcon/customIcon.json -------------------------------------------------------------------------------- /src/lib/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/github.svg -------------------------------------------------------------------------------- /src/lib/images/logos/AntDesign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/AntDesign.svg -------------------------------------------------------------------------------- /src/lib/images/logos/Astro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/Astro.svg -------------------------------------------------------------------------------- /src/lib/images/logos/Bun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/Bun.svg -------------------------------------------------------------------------------- /src/lib/images/logos/Esbuild.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/Esbuild.svg -------------------------------------------------------------------------------- /src/lib/images/logos/LeetCode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/LeetCode.svg -------------------------------------------------------------------------------- /src/lib/images/logos/Nuxt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/Nuxt.svg -------------------------------------------------------------------------------- /src/lib/images/logos/Qwik.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/Qwik.svg -------------------------------------------------------------------------------- /src/lib/images/logos/React.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/React.svg -------------------------------------------------------------------------------- /src/lib/images/logos/Rollup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/Rollup.svg -------------------------------------------------------------------------------- /src/lib/images/logos/Solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/Solid.svg -------------------------------------------------------------------------------- /src/lib/images/logos/Svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/Svelte.svg -------------------------------------------------------------------------------- /src/lib/images/logos/TailwindCSS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/TailwindCSS.svg -------------------------------------------------------------------------------- /src/lib/images/logos/UnoCSS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/UnoCSS.svg -------------------------------------------------------------------------------- /src/lib/images/logos/Vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/Vite.svg -------------------------------------------------------------------------------- /src/lib/images/logos/Vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/Vue.svg -------------------------------------------------------------------------------- /src/lib/images/logos/Webpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/Webpack.svg -------------------------------------------------------------------------------- /src/lib/images/logos/vant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/logos/vant.jpg -------------------------------------------------------------------------------- /src/lib/images/svelte-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/svelte-logo.svg -------------------------------------------------------------------------------- /src/lib/images/svelte-welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/svelte-welcome.png -------------------------------------------------------------------------------- /src/lib/images/svelte-welcome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/lib/images/svelte-welcome.webp -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/routes/+page.ts -------------------------------------------------------------------------------- /src/routes/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/routes/Header.svelte -------------------------------------------------------------------------------- /src/routes/ai/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/routes/ai/+page.svelte -------------------------------------------------------------------------------- /src/routes/ai/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/routes/ai/+page.ts -------------------------------------------------------------------------------- /src/routes/home/CustomSites.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/routes/home/CustomSites.svelte -------------------------------------------------------------------------------- /src/routes/home/FormModal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/routes/home/FormModal.svelte -------------------------------------------------------------------------------- /src/routes/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/routes/styles.css -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/types/index.d.ts -------------------------------------------------------------------------------- /src/utils/aiSites/aiUtilSites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/utils/aiSites/aiUtilSites.ts -------------------------------------------------------------------------------- /src/utils/aiSites/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/utils/aiSites/index.ts -------------------------------------------------------------------------------- /src/utils/hotSites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/utils/hotSites.ts -------------------------------------------------------------------------------- /src/utils/sites/algorithm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/utils/sites/algorithm.ts -------------------------------------------------------------------------------- /src/utils/sites/blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/utils/sites/blog.ts -------------------------------------------------------------------------------- /src/utils/sites/echarts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/utils/sites/echarts.ts -------------------------------------------------------------------------------- /src/utils/sites/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/utils/sites/index.ts -------------------------------------------------------------------------------- /src/utils/sites/ossSites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/utils/sites/ossSites.ts -------------------------------------------------------------------------------- /src/utils/sites/spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/utils/sites/spec.ts -------------------------------------------------------------------------------- /src/utils/sites/techSites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/utils/sites/techSites.ts -------------------------------------------------------------------------------- /src/utils/sites/utilSites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/utils/sites/utilSites.ts -------------------------------------------------------------------------------- /src/utils/sites/weekly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/src/utils/sites/weekly.ts -------------------------------------------------------------------------------- /static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/static/favicon.svg -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/static/robots.txt -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/tsconfig.json -------------------------------------------------------------------------------- /uno.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/uno.config.ts -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cunzaizhuyi/awesome-fe-sites/HEAD/vite.config.ts --------------------------------------------------------------------------------